Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MapEqualsTester (0.2 sec)

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

     *
     * @author George van den Driessche
     * @author Chris Povirk
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class MapEqualsTester<K, V> extends AbstractMapTester<K, V> {
      public void testEquals_otherMapWithSameEntries() {
        assertTrue(
            "A Map should equal any other Map containing the same entries.",
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 09 20:10:38 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/MapEqualsTester.java

     *
     * @author George van den Driessche
     * @author Chris Povirk
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class MapEqualsTester<K, V> extends AbstractMapTester<K, V> {
      public void testEquals_otherMapWithSameEntries() {
        assertTrue(
            "A Map should equal any other Map containing the same entries.",
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jan 09 20:10:38 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapCreationTester;
    import com.google.common.collect.testing.testers.MapEntrySetTester;
    import com.google.common.collect.testing.testers.MapEqualsTester;
    import com.google.common.collect.testing.testers.MapGetTester;
    import com.google.common.collect.testing.testers.MapHashCodeTester;
    import com.google.common.collect.testing.testers.MapIsEmptyTester;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 11K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapCreationTester;
    import com.google.common.collect.testing.testers.MapEntrySetTester;
    import com.google.common.collect.testing.testers.MapEqualsTester;
    import com.google.common.collect.testing.testers.MapForEachTester;
    import com.google.common.collect.testing.testers.MapGetOrDefaultTester;
    import com.google.common.collect.testing.testers.MapGetTester;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 12.1K bytes
    - Viewed (0)
Back to top