Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestService (0.23 sec)

  1. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            // Test with class name not ending with Pager
            String nonPagerComponentName = namingConvention.fromClassNameToComponentName("com.example.TestService");
            assertNotNull(nonPagerComponentName);
            assertEquals("testService", nonPagerComponentName);
        }
    
        // Test class name creation from component name
        public void test_fromComponentNameToClassName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            assertEquals("Invalid cron expression format", violation.getMessage());
        }
    
        // Test annotation on method parameter
        public void test_annotationOnMethod() throws Exception {
            Method method = TestService.class.getDeclaredMethod("scheduledTask", String.class);
            Annotation[][] paramAnnotations = method.getParameterAnnotations();
    
            assertEquals(1, paramAnnotations.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            assertNull(exception.getComponentName());
        }
    
        public void test_constructor_withComponentNameAndNullCause() {
            // Test constructor with component name and null cause
            String componentName = "testService";
            ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName, null);
    
            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