Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for validateMethod (0.05 sec)

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

                // validate()
                Method validateMethod = WebApiUtil.class.getMethod("validate");
                assertTrue("validate should be static", java.lang.reflect.Modifier.isStatic(validateMethod.getModifiers()));
                assertTrue("validate should be public", java.lang.reflect.Modifier.isPublic(validateMethod.getModifiers()));
                assertEquals("validate should return void", void.class, validateMethod.getReturnType());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        TestSuite suite = new TestSuite();
    
        Method[] methods = Monitor.class.getMethods();
        sortMethods(methods);
        for (Method method : methods) {
          if (isAnyEnter(method) || isWaitFor(method)) {
            validateMethod(method);
            addTests(suite, method);
          }
        }
    
        assertEquals(980, suite.testCount());
    
        return suite;
      }
    
      /** A typical timeout value we'll use in the tests. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27K bytes
    - Viewed (0)
Back to top