Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for testComponent (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

    import org.dbflute.utflute.lastaflute.police.WebPackageNinjaReferencePolice;
    
    public class FessActionDefTest extends UnitFessTestCase {
    
        //    public void test_component() throws Exception {
        //        policeStoryOfJavaClassChase(new ActionComponentPolice(tp -> getComponent(tp)));
        //    }
    
        // TODO
        //    public void test_hotDeployDestroyer() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/FessLastaDocTest.java

        //                                                                           Component
        //                                                                           =========
        /*
        public void test_component() throws Exception {
            // ## Arrange ##
            String appWebPkg = ".app.web.";
            String actionSuffix = "Action";
    
            // ## Act ##
            policeStoryOfJavaClassChase((srcFile, clazz) -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top