Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_Options_toString (0.07 sec)

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

            assertNull(options.name);
            assertNull(options.propertiesPath);
            assertEquals(1, options.numOfThreads);
            assertFalse(options.cleanup);
        }
    
        public void test_Options_toString() {
            // Test Options toString method
            ThumbnailGenerator.Options options = new ThumbnailGenerator.Options();
            options.sessionId = "test-session";
            options.name = "test-name";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            assertTrue(result.contains("sessionId=null"));
            assertTrue(result.contains("propertiesPath=null"));
        }
    
        // Test Options toString method
        public void test_Options_toString() {
            SuggestCreator.Options options = new SuggestCreator.Options();
            options.sessionId = "test-session";
            options.name = "test-name";
            options.propertiesPath = "/path/to/props";
    
    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/exec/CrawlerTest.java

            assertTrue(result.contains("data1"));
            assertTrue(result.contains("data2"));
            assertTrue(result.contains("data3"));
            assertTrue(result.contains("data4"));
        }
    
        public void test_Options_toString() {
            Crawler.Options options = new Crawler.Options();
            options.sessionId = "session123";
            options.name = "testCrawl";
            options.webConfigIds = "web1,web2";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
Back to top