HomeSort by relevance Sort by last modified time
    Searched refs:mapOne (Results 1 - 5 of 5) sorted by null

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
IdentityHashMap2Test.java 378 IdentityHashMap mapOne = new IdentityHashMap();
390 mapOne.put(one, two);
397 assertEquals("failure of equality of IdentityHashMaps", mapOne, mapFour);
399 !mapOne.equals(mapTwo));
401 !mapOne.equals(mapThree));
412 !mapOne.equals(hashMapTwo));
415 !mapOne.equals(hashMapThree));
  /libcore/luni/src/test/java/tests/api/java/util/
IdentityHashMapTest.java 374 IdentityHashMap mapOne = new IdentityHashMap();
386 mapOne.put(one, two);
393 assertEquals("failure of equality of IdentityHashMaps", mapOne, mapFour);
395 !mapOne.equals(mapTwo));
397 !mapOne.equals(mapThree));
408 !mapOne.equals(hashMapTwo));
411 !mapOne.equals(hashMapThree));
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableBiMapTest.java 276 ImmutableBiMap<String, Integer> mapOne = builder
285 assertMapEquals(mapOne, "one", 1, "two", 2);
286 assertMapEquals(mapOne.inverse(), 1, "one", 2, "two");
ImmutableMapTest.java 377 ImmutableMap<String, Integer> mapOne = builder
386 assertMapEquals(mapOne, "one", 1, "two", 2);
ImmutableSortedMapTest.java 416 ImmutableSortedMap<String, Integer> mapOne = builder
425 assertMapEquals(mapOne, "one", 1, "two", 2);

Completed in 59 milliseconds