- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 151 for test_constructor (0.07 sec)
- 
				
				src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.javaassertTrue("HotThreadMonitorTarget should implement TimeoutTarget", TimeoutTarget.class.isAssignableFrom(HotThreadMonitorTarget.class)); } public void test_constructor() { assertNotNull("Constructor should create instance", target); assertTrue("Instance should be of correct type", target instanceof HotThreadMonitorTarget); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.javapackage org.codelibs.fess.exception; import org.codelibs.fess.app.web.RootAction; import org.codelibs.fess.unit.UnitFessTestCase; public class UserRoleLoginExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test constructor with RootAction class UserRoleLoginException exception = new UserRoleLoginException(RootAction.class); assertNotNull(exception);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.8K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.javaimport org.lastaflute.web.servlet.request.RequestManager; import org.lastaflute.web.validation.ActionValidator; public class FessActionValidatorTest extends UnitFessTestCase { public void test_constructor() { // Test basic class structure without complex mocking assertEquals("FessActionValidator should be in correct package", "org.codelibs.fess.validation.FessActionValidator",Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.7K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.javaprivate CustomSizeValidator validator; @Override public void setUp() throws Exception { super.setUp(); validator = new CustomSizeValidator(); } public void test_constructor() { assertNotNull(validator); } public void test_isValid_nullValue() { final CustomSize annotation = createBasicAnnotation(); validator.initialize(annotation);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.javaprivate SuppressErrorReportValve valve; @Override public void setUp() throws Exception { super.setUp(); valve = new SuppressErrorReportValve(); } public void test_constructor() { assertNotNull(valve); } public void test_showReportDisabled() { assertFalse(valve.isShowReport()); } public void test_showServerInfoDisabled() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.4K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java// Verify they don't affect each other item1.id = 300L; assertEquals(300L, item1.getId()); assertEquals(200L, item2.getId()); } public void test_constructor() { // Test that constructor creates a valid instance TestDictionaryItem newItem = new TestDictionaryItem(); assertNotNull(newItem); assertEquals(0L, newItem.getId()); }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.javaimport org.apache.lucene.queryparser.classic.ParseException; import org.codelibs.fess.unit.UnitFessTestCase; public class QueryParseExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test constructor with ParseException cause ParseException parseException = new ParseException("Test parse error"); QueryParseException queryParseException = new QueryParseException(parseException);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java} @Override public void tearDown() throws Exception { crawlerEngineClient = null; super.tearDown(); } // Test constructor public void test_constructor() { // Test that constructor creates a non-null instance assertNotNull(crawlerEngineClient); } // Test inheritance public void test_inheritance() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java@Override public void setUp() throws Exception { super.setUp(); invokerAssistant = new ImplementedInvokerAssistant(); } // Test constructor public void test_constructor() { assertNotNull(new ImplementedInvokerAssistant()); } // Test assistCurrentDBDef public void test_assistCurrentDBDef() { DBDef result = invokerAssistant.assistCurrentDBDef();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.javaimport java.io.ObjectInputStream; import java.io.ObjectOutputStream; import org.codelibs.fess.unit.UnitFessTestCase; public class DictionaryExpiredExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test default constructor DictionaryExpiredException exception = new DictionaryExpiredException(); assertNotNull(exception); assertNull(exception.getMessage());Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0)