Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EqualsBetweenInconvertibleTypes (0.58 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionEqualsTester.java

        // noinspection ObjectEqualsNull
        assertFalse("An object should not be equal to null.", collection.equals(null));
      }
    
      public void testEquals_notACollection() {
        // noinspection EqualsBetweenInconvertibleTypes
        assertFalse(
            "A Collection should never equal an object that is not a Collection.",
            collection.equals("huh?"));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/CollectionEqualsTester.java

        // noinspection ObjectEqualsNull
        assertFalse("An object should not be equal to null.", collection.equals(null));
      }
    
      public void testEquals_notACollection() {
        // noinspection EqualsBetweenInconvertibleTypes
        assertFalse(
            "A Collection should never equal an object that is not a Collection.",
            collection.equals("huh?"));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. .idea/inspectionProfiles/Gradle.xml

        <inspection_tool class="Convert2streamapi" enabled="false" level="INFORMATION" enabled_by_default="false" />
        <inspection_tool class="EqualsBetweenInconvertibleTypes" enabled="true" level="ERROR" enabled_by_default="true" />
        <inspection_tool class="FieldNamingConvention" enabled="true" level="ERROR" enabled_by_default="true">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top