Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for getDeclaredMethod (0.07 sec)

  1. src/test/java/jcifs/internal/TreeConnectResponseTest.java

         */
        private Object invokeMethod(Object obj, String methodName, Class<?>[] paramTypes, Object... args) throws Exception {
            Method method = obj.getClass().getDeclaredMethod(methodName, paramTypes);
            method.setAccessible(true);
            return method.invoke(obj, args);
        }
    
        /**
         * Tests for the TreeConnectResponse interface using a mock implementation
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

        void testCreateInformationValidCombinations(byte infoType, byte infoClass) throws Exception {
            // Use reflection to test private method
            Method createInfoMethod = Smb2QueryInfoResponse.class.getDeclaredMethod("createInformation", byte.class, byte.class);
            createInfoMethod.setAccessible(true);
    
            Decodable result = (Decodable) createInfoMethod.invoke(null, infoType, infoClass);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

        }
    
        public void test_getExpiredTime() {
            // Test via reflection since method is protected
            try {
                java.lang.reflect.Method getExpiredTimeMethod = CrawlingInfoHelper.class.getDeclaredMethod("getExpiredTime", int.class);
                getExpiredTimeMethod.setAccessible(true);
    
                long result1 = (Long) getExpiredTimeMethod.invoke(crawlingInfoHelper, 1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top