- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for test_available (0.07 seconds)
-
fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/container/LastaCrawlerContainerTest.java
@Resource private CrawlerContainer crawlerContainer; @Override protected String prepareConfigFile() { return "crawler.xml"; } @Test public void test_available() { // Container should be available after initialization assertTrue(crawlerContainer.available()); } @Test public void test_getComponent_crawler() {Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Fri Jan 16 13:52:11 GMT 2026 - 2.7K bytes - Click Count (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(); } @Test public void test_isAvailable() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test that isAvailable returns true for EmptyGenerator assertTrue(emptyGenerator.isAvailable());
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) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", null); assertFalse(thumbnailGenerator.isTarget(docMap)); } @Test public void test_isAvailable() { // Test availability check assertTrue(thumbnailGenerator.isAvailable()); } @Test public void test_destroy() { // Test destroy method - should not throw exception
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
return generateCalled; } public boolean isDestroyCalled() { return destroyCalled; } } @Test public void test_isAvailable() { // Test default implementation generator = new TestThumbnailGenerator(); assertTrue(generator.isAvailable()); } @Test public void test_isTarget() {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)