- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 49 for test_constructor (0.06 seconds)
-
src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class QueryParseExceptionTest extends UnitFessTestCase { @Test public void test_constructor() { // Test constructor with ParseException cause ParseException parseException = new ParseException("Test parse error"); QueryParseException queryParseException = new QueryParseException(parseException);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
@Override protected void tearDown(TestInfo testInfo) throws Exception { crawlerEngineClient = null; super.tearDown(testInfo); } // Test constructor @Test public void test_constructor() { // Test that constructor creates a non-null instance assertNotNull(crawlerEngineClient); } // Test inheritance @Test public void test_inheritance() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
protected void tearDown(TestInfo testInfo) throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(testInfo); } // Test default constructor @Test public void test_constructor() { assertNotNull(testScriptEngine); } // Test register method @Test public void test_register() { testScriptEngine.register();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java
public class LogNotificationHelperTest extends UnitFessTestCase { @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); } @Test public void test_constructor() { LogNotificationHelper helper = new LogNotificationHelper(); assertNotNull(helper); } @Test public void test_init_and_destroy() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
} @Override protected void tearDown(TestInfo testInfo) throws Exception { super.tearDown(testInfo); } // Test default constructor @Test public void test_constructor() { PurgeThumbnailJob job = new PurgeThumbnailJob(); assertNotNull(job); assertEquals(30L * 24 * 60 * 60 * 1000L, job.getExpiry()); } // Test getExpiry with default valueCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
assertEquals(handlerWithSlash, corsHandlerFactory.get(originWithSlash)); assertEquals(handlerWithoutSlash, corsHandlerFactory.get(originWithoutSlash)); } @Test public void test_constructor() { // Execute CorsHandlerFactory factory = new CorsHandlerFactory(); // Verify assertNotNull(factory); assertNotNull(factory.handerMap);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
assertTrue(TimeoutTarget.class.isAssignableFrom(SystemMonitorTarget.class), "SystemMonitorTarget should implement TimeoutTarget"); } @Test public void test_constructor() { assertNotNull(target, "Constructor should create instance"); assertTrue(target instanceof SystemMonitorTarget, "Instance should be of correct type");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class DictionaryExpiredExceptionTest extends UnitFessTestCase { @Test public void test_constructor() { // Test default constructor DictionaryExpiredException exception = new DictionaryExpiredException(); assertNotNull(exception); assertNull(exception.getMessage());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
String result = updateLabelJob.execute(); assertNotNull(result); assertTrue(result.contains("documents")); } // Test constructor @Test public void test_constructor() { UpdateLabelJob job = new UpdateLabelJob(); assertNotNull(job); assertNull(job.queryBuilder); } // Test processing documents with various URL conditions @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
@Override protected void tearDown(TestInfo testInfo) throws Exception { // Clear WebApiManagerFactory super.tearDown(testInfo); } // Test constructor @Test public void test_constructor() { assertNotNull(new WebApiFilter()); } // Test init method @Test public void test_init() throws ServletException { FilterConfig filterConfig = new FilterConfig() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.5K bytes - Click Count (0)