Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for validateMethod (0.21 sec)

  1. 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. */
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 27.4K 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(548, suite.testCount());
    
        return suite;
      }
    
      /** A typical timeout value we'll use in the tests. */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 26.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    void validateOnlyOneConst(java.util.List); protected void validateZeroArgConst(java.util.List); private boolean hasOneConstructor(); protected void validateInstanceMeth(java.util.List); protected void validateFields(java.util.List); private void validateMethods(java.util.List); protected void validateTestMethods(java.util.List); protected Object createTest() throws Exception; protected Object createTest(model.FrameworkMethod) throws Exception; protected String testName(model.FrameworkMethod); protected...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top