Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test_component (0.49 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top