Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for incorrecta (0.14 sec)

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

          assertErrorMessage(e, obj + " must not be Object#equals to null");
          return;
        }
        fail("Should get equal to null error");
      }
    
      /** Test proper handling where an object incorrectly tests for an incompatible class */
      public void testInvalidEqualsIncompatibleClass() {
        Object obj = new InvalidEqualsIncompatibleClassObject();
        equalsTester.addEqualityGroup(obj);
        try {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 15:49:06 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/EqualsTesterTest.java

          assertErrorMessage(e, obj + " must not be Object#equals to null");
          return;
        }
        fail("Should get equal to null error");
      }
    
      /** Test proper handling where an object incorrectly tests for an incompatible class */
      public void testInvalidEqualsIncompatibleClass() {
        Object obj = new InvalidEqualsIncompatibleClassObject();
        equalsTester.addEqualityGroup(obj);
        try {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 15:49:06 GMT 2023
    - 12.9K bytes
    - Viewed (0)
Back to top