Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for doTestEquals (0.44 sec)

  1. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        assertThrows(
            ParameterNotInstantiableException.class,
            () -> tester.doTestEquals(ConstructorParameterNotInstantiable.class));
      }
    
      public void testNoDistinctValueForEqualsTest() throws Exception {
        assertThrows(
            ParameterHasNoDistinctValueException.class,
            () -> tester.doTestEquals(ConstructorParameterSingleValue.class));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       */
      public void testEquals(Class<?> cls) {
        try {
          doTestEquals(cls);
        } catch (Exception e) {
          throwIfUnchecked(e);
          throw new RuntimeException(e);
        }
      }
    
      void doTestEquals(Class<?> cls)
          throws ParameterNotInstantiableException,
              ParameterHasNoDistinctValueException,
              IllegalAccessException,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       */
      public void testEquals(Class<?> cls) {
        try {
          doTestEquals(cls);
        } catch (Exception e) {
          throwIfUnchecked(e);
          throw new RuntimeException(e);
        }
      }
    
      void doTestEquals(Class<?> cls)
          throws ParameterNotInstantiableException,
              ParameterHasNoDistinctValueException,
              IllegalAccessException,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

        for (Class<?> classToTest :
            findClassesToTest(loadClassesInPackage(), EQUALS_TEST_METHOD_NAMES)) {
          if (!classToTest.isEnum() && isEqualsDefined(classToTest)) {
            try {
              tester.doTestEquals(classToTest);
            } catch (Throwable e) {
              throw sanityError(classToTest, EQUALS_TEST_METHOD_NAMES, "equals test", e);
            }
          }
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 17.8K bytes
    - Viewed (0)
Back to top