Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_static_method_signature (0.22 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

            // Test that the constant used is accessible and has expected value
            assertEquals("fess.search_engine.http_address", Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
        }
    
        @Test
        public void test_static_method_signature() {
            // Verify method signature is correct
            try {
                java.lang.reflect.Method method = SystemUtil.class.getMethod("getSearchEngineHttpAddress");
    
                // Check return type
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                fail("Should be able to access protected constructor: " + e.getMessage());
            }
        }
    
        @Test
        public void test_static_method_signatures() {
            // Verify all public static methods exist with correct signatures
            try {
                // printThreadDump()
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
Back to Top