Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_Options_defaultValues (0.33 seconds)

  1. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

        public void test_constructor() {
            // Test default constructor
            ThumbnailGenerator generator = new ThumbnailGenerator();
            assertNotNull(generator);
        }
    
        @Test
        public void test_Options_defaultValues() {
            // Test Options class default values
            ThumbnailGenerator.Options options = new ThumbnailGenerator.Options();
            assertNull(options.sessionId);
            assertNull(options.name);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

        public void test_constructor() {
            SuggestCreator creator = new SuggestCreator();
            assertNotNull(creator);
        }
    
        // Test Options class default values
        @Test
        public void test_Options_defaultValues() {
            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNull(options.sessionId);
            assertNull(options.name);
            assertNull(options.propertiesPath);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
Back to Top