Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            generator = new TestThumbnailGenerator();
    
            assertFalse(generator.isDestroyCalled());
            generator.destroy();
            assertTrue(generator.isDestroyCalled());
        }
    
        public void test_expandPath() {
            // Test expandPath method
            generator = new TestThumbnailGenerator();
    
            // Test without mappings
            assertEquals("path/to/file", generator.expandPath("path/to/file"));
    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

            // Test setting zero value
            emptyGenerator.setMaxRedirectCount(0);
            assertEquals(0, emptyGenerator.maxRedirectCount);
        }
    
        public void test_expandPath() {
            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Test with no file path mappings
            assertEquals("test/path", emptyGenerator.expandPath("test/path"));
    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