- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for TestComponent (0.07 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
TestComponent.resetCounter(); factory.setComponentName("testComponent"); final List<TestComponent> destroyedComponents = new ArrayList<>(); factory.setOnDestroyListener(new OnDestroyListener<TestComponent>() { @Override public void onDestroy(PooledObject<TestComponent> p) { TestComponent component = p.getObject();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
assertSame(result1, result2); assertSame(mockConfig, result1); } public void test_register_and_getComponent() { String testInstance = "test_instance"; String componentName = "testComponent"; ComponentUtil.register(testInstance, componentName); String retrieved = ComponentUtil.getComponent(componentName); assertSame(testInstance, retrieved); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
public class ContainerNotAvailableExceptionTest extends UnitFessTestCase { public void test_constructor_withComponentName() { // Test constructor with component name only String componentName = "testComponent"; ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName); assertEquals(componentName + " is not available.", exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0)