Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for testConstructor (0.07 sec)

  1. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

        }
    
        @Override
        public void tearDown() throws Exception {
            ComponentUtil.setFessConfig(null);
            super.tearDown();
        }
    
        // Test default constructor
        public void test_constructor() {
            assertNotNull(testScriptEngine);
        }
    
        // Test register method
        public void test_register() {
            testScriptEngine.register();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

            super.setUp();
            thumbnailGenerator = new ThumbnailGenerator();
        }
    
        @Override
        public void tearDown() throws Exception {
            super.tearDown();
        }
    
        public void test_constructor() {
            // Test default constructor
            ThumbnailGenerator generator = new ThumbnailGenerator();
            assertNotNull(generator);
        }
    
        public void test_Options_defaultValues() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

        private AggregateLogJob aggregateLogJob;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            aggregateLogJob = new AggregateLogJob();
        }
    
        public void test_constructor() {
            // Test default constructor
            AggregateLogJob job = new AggregateLogJob();
            assertNotNull(job);
        }
    
        public void test_execute_success() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            super.setUp();
            namingConvention = new MockNamingConvention();
            pagerCreator = new PagerCreator(namingConvention);
        }
    
        // Test constructor initialization
        public void test_constructor() {
            // Verify suffix is set correctly
            assertEquals(PagerCreator.SUFFIX, "Pager");
    
            // Verify name suffix is set
            assertEquals("Pager", pagerCreator.getNameSuffix());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

        }
    
        @Override
        public void tearDown() throws Exception {
            super.tearDown();
        }
    
        // Test default constructor
        public void test_constructor() {
            PurgeThumbnailJob job = new PurgeThumbnailJob();
            assertNotNull(job);
            assertEquals(30L * 24 * 60 * 60 * 1000L, job.getExpiry());
        }
    
        // Test getExpiry with default value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java

    import java.util.concurrent.TimeUnit;
    import java.util.function.Consumer;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class InputStreamThreadTest extends UnitFessTestCase {
    
        public void test_constructor() {
            String input = "test line";
            InputStream is = new ByteArrayInputStream(input.getBytes(StandardCharsets.UTF_8));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

                // Override methods that are called in tests
            }, "ldapManager");
        }
    
        @Override
        public void tearDown() throws Exception {
            super.tearDown();
        }
    
        public void test_constructor() {
            // Test constructor initializes fields correctly
            LdapUser user = new LdapUser(testEnv, "username");
            assertEquals("username", user.getName());
            assertSame(testEnv, user.getEnvironment());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java

        private 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)
  9. 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)
  10. src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java

    import 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)
Back to top