Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_isPublicClass (0.16 seconds)

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

            assertNotNull(pkg, "Package should not be null");
            assertEquals("Should be in correct package", "org.codelibs.fess.validation", pkg.getName());
        }
    
        @Test
        public void test_isPublicClass() {
            assertTrue("FessActionValidator should be public", java.lang.reflect.Modifier.isPublic(FessActionValidator.class.getModifiers()));
        }
    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/tomcat/webresources/FessWebResourceRootTest.java

            assertNotNull(pkg, "Package should not be null");
            assertEquals("Should be in correct package", "org.codelibs.fess.tomcat.webresources", pkg.getName());
        }
    
        @Test
        public void test_isPublicClass() {
            assertTrue("FessWebResourceRoot should be public", java.lang.reflect.Modifier.isPublic(FessWebResourceRoot.class.getModifiers()));
            assertFalse("FessWebResourceRoot should not be abstract",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
Back to Top