Searched refs:mapOne (Results 1 – 6 of 6) sorted by relevance
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | ImmutableBiMapTest.java | 281 ImmutableBiMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).build(); in testBuilderReuse() local 284 assertMapEquals(mapOne, "one", 1, "two", 2); in testBuilderReuse() 285 assertMapEquals(mapOne.inverse(), 1, "one", 2, "two"); in testBuilderReuse()
|
D | ImmutableSortedMapTest.java | 403 ImmutableSortedMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).build(); in testBuilderReuse() local 406 assertMapEquals(mapOne, "one", 1, "two", 2); in testBuilderReuse()
|
D | ImmutableMapTest.java | 500 ImmutableMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).buildOrThrow(); in testBuilderReuse() local 503 assertMapEquals(mapOne, "one", 1, "two", 2); in testBuilderReuse()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableBiMapTest.java | 312 ImmutableBiMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).build(); in testBuilderReuse() local 315 assertMapEquals(mapOne, "one", 1, "two", 2); in testBuilderReuse() 316 assertMapEquals(mapOne.inverse(), 1, "one", 2, "two"); in testBuilderReuse()
|
D | ImmutableSortedMapTest.java | 409 ImmutableSortedMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).build(); in testBuilderReuse() local 412 assertMapEquals(mapOne, "one", 1, "two", 2); in testBuilderReuse()
|
D | ImmutableMapTest.java | 530 ImmutableMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).buildOrThrow(); in testBuilderReuse() local 533 assertMapEquals(mapOne, "one", 1, "two", 2); in testBuilderReuse()
|