Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

            // Test setting zero value
            emptyGenerator.setMaxRedirectCount(0);
            assertEquals(0, emptyGenerator.maxRedirectCount);
        }
    
        @Test
        public void test_expandPath() {
            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Test with no file path mappings
            assertEquals("test/path", emptyGenerator.expandPath("test/path"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            assertFalse(generator.isDestroyCalled());
            generator.destroy();
            assertTrue(generator.isDestroyCalled());
        }
    
        @Test
        public void test_expandPath() {
            // Test expandPath method
            generator = new TestThumbnailGenerator();
    
            // Test without mappings
            assertEquals("path/to/file", generator.expandPath("path/to/file"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 17.1K bytes
    - Click Count (0)
Back to Top