Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for doTestNulls (0.55 sec)

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

       * </ul>
       */
      public void testNulls(Class<?> cls) {
        try {
          doTestNulls(cls, Visibility.PACKAGE);
        } catch (Exception e) {
          throwIfUnchecked(e);
          throw new RuntimeException(e);
        }
      }
    
      void doTestNulls(Class<?> cls, Visibility visibility)
          throws ParameterNotInstantiableException, IllegalAccessException, InvocationTargetException,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:18:12 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

             * for a package-private utility class. So we skip the class entirely instead.
             */
            continue;
          }
          try {
            tester.doTestNulls(classToTest, visibility);
          } catch (Throwable e) {
            throw sanityError(classToTest, NULL_TEST_METHOD_NAMES, "nulls test", e);
          }
        }
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 19:43:49 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

             * for a package-private utility class. So we skip the class entirely instead.
             */
            continue;
          }
          try {
            tester.doTestNulls(classToTest, visibility);
          } catch (Throwable e) {
            throw sanityError(classToTest, NULL_TEST_METHOD_NAMES, "nulls test", e);
          }
        }
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 19:43:49 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top