Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test_package_structure (0.5 sec)

  1. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

                // but method should be callable
                assertNotNull("Exception should not be null if thrown", e);
            }
        }
    
        public void test_package_structure() {
            assertEquals("Should be in timer package", "org.codelibs.fess.timer", HotThreadMonitorTarget.class.getPackage().getName());
        }
    
        public void test_class_is_public() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

            assertTrue("Should have appendJvmStats method", hasAppendJvmStats);
            assertTrue("Should have appendFesenStats method", hasAppendFesenStats);
        }
    
        public void test_package_structure() {
            assertEquals("Should be in timer package", "org.codelibs.fess.timer", SystemMonitorTarget.class.getPackage().getName());
        }
    
        public void test_class_is_public() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. 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());
        }
    
        public void test_packageStructure() {
            final Package pkg = FessActionValidator.class.getPackage();
            assertNotNull("Package should not be null", pkg);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

            } catch (final NoSuchMethodException e) {
                fail("processWebInfLib method should exist");
            }
        }
    
        public void test_packageStructure() {
            // Verify the class is in the expected package structure
            final Package pkg = FessWebResourceRoot.class.getPackage();
            assertNotNull("Package should not be null", pkg);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top