- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for test_destroy (0.85 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
assertFalse(generator.isGenerateCalled()); assertTrue(generator.generate("id123", outputFile)); assertTrue(generator.isGenerateCalled()); } public void test_destroy() { // Test destroy method is called correctly generator = new TestThumbnailGenerator(); assertFalse(generator.isDestroyCalled()); generator.destroy();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
assertFalse(emptyGenerator.generate(null, outputFile)); assertFalse(emptyGenerator.generate("thumbnailId", null)); assertFalse(emptyGenerator.generate(null, null)); } public void test_destroy() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test that destroy method can be called without error emptyGenerator.destroy();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0)