Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for test_packageStructure (0.14 seconds)

  1. src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.java

            assertEquals("Should have one type parameter", 1, typeParameters.length);
            assertEquals("Type parameter should be MESSAGES", "MESSAGES", typeParameters[0].getName());
        }
    
        @Test
        public void test_packageStructure() {
            final Package pkg = FessActionValidator.class.getPackage();
            assertNotNull(pkg, "Package should not be null");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

            assertTrue("Should have appendJvmStats method", hasAppendJvmStats);
            assertTrue("Should have appendFesenStats method", hasAppendFesenStats);
        }
    
        @Test
        public void test_package_structure() {
            assertEquals("Should be in timer package", "org.codelibs.fess.timer", SystemMonitorTarget.class.getPackage().getName());
        }
    
        @Test
        public void test_class_is_public() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

                // but method should be callable
                assertNotNull(e, "Exception should not be null if thrown");
            }
        }
    
        @Test
        public void test_package_structure() {
            assertEquals("Should be in timer package", "org.codelibs.fess.timer", HotThreadMonitorTarget.class.getPackage().getName());
        }
    
        @Test
        public void test_class_is_public() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.3K bytes
    - Click Count (0)
Back to Top