Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 39 for test_constructor (0.13 seconds)

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

  1. src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java

            assertTrue(resultUrls.contains("http://example.com/valid3"));
        }
    
        /**
         * Test that FessCrawlerThread can be instantiated
         */
        @Test
        public void test_constructor() {
            FessCrawlerThread crawlerThread = new FessCrawlerThread();
            assertNotNull(crawlerThread, "FessCrawlerThread should be instantiable");
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            super.tearDown(testInfo);
        }
    
        // Test constructor
        @Test
        public void test_constructor() {
            ScriptEngineFactory factory = new ScriptEngineFactory();
            assertNotNull(factory);
            assertNotNull(factory.scriptEngineMap);
            assertTrue(factory.scriptEngineMap.isEmpty());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

            }, "ldapManager");
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            super.tearDown(testInfo);
        }
    
        @Test
        public void test_constructor() {
            // Test constructor initializes fields correctly
            LdapUser user = new LdapUser(testEnv, "username");
            assertEquals("username", user.getName());
            assertSame(testEnv, user.getEnvironment());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.9K bytes
    - Click Count (0)
  6. 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)
  7. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            validator = new CustomSizeValidator();
        }
    
        @Test
        public void test_constructor() {
            assertNotNull(validator);
        }
    
        @Test
        public void test_isValid_nullValue() {
            final CustomSize annotation = createBasicAnnotation();
            validator.initialize(annotation);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  8. 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)
  9. 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)
  10. 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)
Back to Top