Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for invokeMethod (0.06 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

            // test that it consistently returns null for any input
            assertNull(invokeMethod(provider, "findOnMainSchema", "TestClassification"));
            assertNull(invokeMethod(provider, "findOnMainSchema", ""));
            assertNull(invokeMethod(provider, "findOnMainSchema", "Some.Classification"));
            assertNull(invokeMethod(provider, "findOnMainSchema", "Project.TestClassification"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/TreeConnectResponseTest.java

            field.setAccessible(true);
            return field.get(obj);
        }
    
        /**
         * Helper method to invoke protected/private method using reflection
         */
        private Object invokeMethod(Object obj, String methodName, Class<?>[] paramTypes, Object... args) throws Exception {
            Method method = obj.getClass().getDeclaredMethod(methodName, paramTypes);
            method.setAccessible(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top