- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for test_isAvailable (0.61 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
public boolean isGenerateCalled() { return generateCalled; } public boolean isDestroyCalled() { return destroyCalled; } } public void test_isAvailable() { // Test default implementation generator = new TestThumbnailGenerator(); assertTrue(generator.isAvailable()); } public void test_isTarget() { // Test isTarget method
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
emptyGenerator.destroy(); // Call destroy multiple times to ensure it's safe emptyGenerator.destroy(); emptyGenerator.destroy(); } public void test_isAvailable() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test that isAvailable returns true for EmptyGenerator assertTrue(emptyGenerator.isAvailable());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", null); assertFalse(thumbnailGenerator.isTarget(docMap)); } public void test_isAvailable() { // Test availability check assertTrue(thumbnailGenerator.isAvailable()); } public void test_destroy() { // Test destroy method - should not throw exception
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0)