Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_createTask (0.05 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            assertEquals(20, generator.maxRedirectCount);
    
            // Set zero
            generator.setMaxRedirectCount(0);
            assertEquals(0, generator.maxRedirectCount);
        }
    
        public void test_createTask() {
            // Test createTask method (requires FessConfig)
            generator = new TestThumbnailGenerator();
            Map<String, Object> docMap = new HashMap<>();
            docMap.put("id", "doc123");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

            assertEquals("/usr/bin/test", emptyGenerator.expandPath("${path}/test"));
            assertEquals("other/path", emptyGenerator.expandPath("other/path"));
        }
    
        public void test_createTask() {
            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Test basic functionality
            Map<String, Object> docMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.3K bytes
    - Viewed (0)
Back to top