Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for test_constructor (0.16 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.java

    import org.lastaflute.web.servlet.request.RequestManager;
    import org.lastaflute.web.validation.ActionValidator;
    
    public class FessActionValidatorTest extends UnitFessTestCase {
    
        @Test
        public void test_constructor() {
            // Test basic class structure without complex mocking
            assertEquals("FessActionValidator should be in correct package", "org.codelibs.fess.validation.FessActionValidator",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

            assertTrue(TimeoutTarget.class.isAssignableFrom(HotThreadMonitorTarget.class),
                    "HotThreadMonitorTarget should implement TimeoutTarget");
        }
    
        @Test
        public void test_constructor() {
            assertNotNull(target, "Constructor should create instance");
            assertTrue(target instanceof HotThreadMonitorTarget, "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
    - 4.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java

            ComponentUtil.getFessConfig().setLogNotificationEnabled(true);
            logNotificationTarget = new LogNotificationTarget();
        }
    
        @Test
        public void test_constructor() {
            LogNotificationTarget target = new LogNotificationTarget();
            assertNotNull(target);
        }
    
        @Test
        public void test_expired_emptyBuffer() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java

        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            valve = new SuppressErrorReportValve();
        }
    
        @Test
        public void test_constructor() {
            assertNotNull(valve);
        }
    
        @Test
        public void test_showReportDisabled() {
            assertFalse(valve.isShowReport());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java

            super.tearDown(testInfo);
        }
    
        /**
         * Test that FessIntervalController can be instantiated correctly
         */
        @Test
        public void test_constructor() {
            FessIntervalController controller = new FessIntervalController();
            assertNotNull(controller);
        }
    
        /**
         * Test getter and setter for delayMillisAfterProcessing
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  6. 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());
        }
    
        @Test
        public void test_constructor() {
            // Test that constructor creates a valid instance
            TestDictionaryItem newItem = new TestDictionaryItem();
            assertNotNull(newItem);
            assertEquals(0L, newItem.getId());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top