Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStaticMethods (0.4 sec)

  1. guava-testlib/src/com/google/common/testing/NullPointerTester.java

       * minimalVisibility}, including those "inherited" from superclasses of the same package.
       */
      public void testStaticMethods(Class<?> c, Visibility minimalVisibility) {
        for (Method method : minimalVisibility.getStaticMethods(c)) {
          if (!isIgnored(method)) {
            testMethod(null, method);
          }
        }
      }
    
      /**
       * Runs {@link #testMethod} on every public static method of class {@code c}, including those
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

       * minimalVisibility}, including those "inherited" from superclasses of the same package.
       */
      public void testStaticMethods(Class<?> c, Visibility minimalVisibility) {
        for (Method method : minimalVisibility.getStaticMethods(c)) {
          if (!isIgnored(method)) {
            testMethod(null, method);
          }
        }
      }
    
      /**
       * Runs {@link #testMethod} on every public static method of class {@code c}, including those
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top