Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for test_Options_toString (1.03 seconds)

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

            assertNull(options.name);
            assertNull(options.propertiesPath);
            assertEquals(1, options.numOfThreads);
            assertFalse(options.cleanup);
        }
    
        @Test
        public void test_Options_toString() {
            // Test Options toString method
            ThumbnailGenerator.Options options = new ThumbnailGenerator.Options();
            options.sessionId = "test-session";
            options.name = "test-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

            assertTrue(result.contains("sessionId=null"));
            assertTrue(result.contains("propertiesPath=null"));
        }
    
        // Test Options toString method
        @Test
        public void test_Options_toString() {
            SuggestCreator.Options options = new SuggestCreator.Options();
            options.sessionId = "test-session";
            options.name = "test-name";
            options.propertiesPath = "/path/to/props";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            assertTrue(result.contains("data2"));
            assertTrue(result.contains("data3"));
            assertTrue(result.contains("data4"));
        }
    
        @Test
        public void test_Options_toString() {
            Crawler.Options options = new Crawler.Options();
            options.sessionId = "session123";
            options.name = "testCrawl";
            options.webConfigIds = "web1,web2";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
Back to Top