10888a09821a98ac0680fad765217302858e70fa4Paul Duffin/*
20888a09821a98ac0680fad765217302858e70fa4Paul Duffin * Copyright (C) 2008 The Guava Authors
30888a09821a98ac0680fad765217302858e70fa4Paul Duffin *
40888a09821a98ac0680fad765217302858e70fa4Paul Duffin * Licensed under the Apache License, Version 2.0 (the "License");
50888a09821a98ac0680fad765217302858e70fa4Paul Duffin * you may not use this file except in compliance with the License.
60888a09821a98ac0680fad765217302858e70fa4Paul Duffin * You may obtain a copy of the License at
70888a09821a98ac0680fad765217302858e70fa4Paul Duffin *
80888a09821a98ac0680fad765217302858e70fa4Paul Duffin * http://www.apache.org/licenses/LICENSE-2.0
90888a09821a98ac0680fad765217302858e70fa4Paul Duffin *
100888a09821a98ac0680fad765217302858e70fa4Paul Duffin * Unless required by applicable law or agreed to in writing, software
110888a09821a98ac0680fad765217302858e70fa4Paul Duffin * distributed under the License is distributed on an "AS IS" BASIS,
120888a09821a98ac0680fad765217302858e70fa4Paul Duffin * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
130888a09821a98ac0680fad765217302858e70fa4Paul Duffin * See the License for the specific language governing permissions and
140888a09821a98ac0680fad765217302858e70fa4Paul Duffin * limitations under the License.
150888a09821a98ac0680fad765217302858e70fa4Paul Duffin */
160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpackage com.google.common.collect;
170888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic class ImmutableMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
180888a09821a98ac0680fad765217302858e70fa4Paul Duffin@Override public String getModuleName() {
190888a09821a98ac0680fad765217302858e70fa4Paul Duffin  return "com.google.common.collect.testModule";
200888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testAsMultimap() throws Exception {
220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest();
230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testAsMultimap();
240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testAsMultimapCaches() throws Exception {
270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest();
280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testAsMultimapCaches();
290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testAsMultimapWhenEmpty() throws Exception {
320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest();
330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testAsMultimapWhenEmpty();
340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testCopyOfEnumMap() throws Exception {
370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest();
380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testCopyOfEnumMap();
390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEquals() throws Exception {
420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest();
430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEquals();
440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testMutableValues() throws Exception {
470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest();
480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testMutableValues();
490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testNullGet() throws Exception {
520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest();
530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testNullGet();
540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilder__CreationTests() throws Exception {
570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilder();
590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutAll__CreationTests() throws Exception {
620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutAll();
640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutAllWithEmptyMap__CreationTests() throws Exception {
670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutAllWithEmptyMap();
690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutImmutableEntryWithNullKeyFailsAtomically__CreationTests() throws Exception {
720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutImmutableEntryWithNullKeyFailsAtomically();
740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutMutableEntryWithNullKeyFailsAtomically__CreationTests() throws Exception {
770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutMutableEntryWithNullKeyFailsAtomically();
790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutNullKey__CreationTests() throws Exception {
820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutNullKey();
840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutNullKeyFailsAtomically__CreationTests() throws Exception {
870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutNullKeyFailsAtomically();
890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutNullKeyViaPutAll__CreationTests() throws Exception {
920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutNullKeyViaPutAll();
940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutNullValue__CreationTests() throws Exception {
970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutNullValue();
990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderPutNullValueViaPutAll__CreationTests() throws Exception {
1020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderPutNullValueViaPutAll();
1040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilderReuse__CreationTests() throws Exception {
1070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilderReuse();
1090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilder_withImmutableEntry__CreationTests() throws Exception {
1120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilder_withImmutableEntry();
1140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilder_withImmutableEntryAndNullContents__CreationTests() throws Exception {
1170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilder_withImmutableEntryAndNullContents();
1190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testBuilder_withMutableEntry__CreationTests() throws Exception {
1220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testBuilder_withMutableEntry();
1240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testCopyOf__CreationTests() throws Exception {
1270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testCopyOf();
1290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testCopyOfEmptyMap__CreationTests() throws Exception {
1320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testCopyOfEmptyMap();
1340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testCopyOfSingletonMap__CreationTests() throws Exception {
1370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testCopyOfSingletonMap();
1390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEmptyBuilder__CreationTests() throws Exception {
1420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEmptyBuilder();
1440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testOf__CreationTests() throws Exception {
1470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testOf();
1490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testOfNullKey__CreationTests() throws Exception {
1520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testOfNullKey();
1540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testOfNullValue__CreationTests() throws Exception {
1570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testOfNullValue();
1590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testOfWithDuplicateKey__CreationTests() throws Exception {
1620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testOfWithDuplicateKey();
1640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPuttingTheSameKeyTwiceThrowsOnBuild__CreationTests() throws Exception {
1670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPuttingTheSameKeyTwiceThrowsOnBuild();
1690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testSingletonBuilder__CreationTests() throws Exception {
1720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests();
1730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testSingletonBuilder();
1740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testClear__MapTestsWithBadHashes() throws Exception {
1770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
1780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testClear();
1790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testContainsKey__MapTestsWithBadHashes() throws Exception {
1820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
1830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testContainsKey();
1840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testContainsValue__MapTestsWithBadHashes() throws Exception {
1870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
1880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testContainsValue();
1890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySet__MapTestsWithBadHashes() throws Exception {
1920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
1930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySet();
1940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
1960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetAddAndAddAll__MapTestsWithBadHashes() throws Exception {
1970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
1980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetAddAndAddAll();
1990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetClear__MapTestsWithBadHashes() throws Exception {
2020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetClear();
2040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryIncompatibleKey__MapTestsWithBadHashes() throws Exception {
2070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryIncompatibleKey();
2090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryNullKeyMissing__MapTestsWithBadHashes() throws Exception {
2120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryNullKeyMissing();
2140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryNullKeyPresent__MapTestsWithBadHashes() throws Exception {
2170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryNullKeyPresent();
2190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetForEmptyMap__MapTestsWithBadHashes() throws Exception {
2220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetForEmptyMap();
2240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetIteratorRemove__MapTestsWithBadHashes() throws Exception {
2270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetIteratorRemove();
2290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemove__MapTestsWithBadHashes() throws Exception {
2320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemove();
2340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveAll__MapTestsWithBadHashes() throws Exception {
2370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveAll();
2390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception {
2420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveAllNullFromEmpty();
2440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveDifferentValue__MapTestsWithBadHashes() throws Exception {
2470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveDifferentValue();
2490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveMissingKey__MapTestsWithBadHashes() throws Exception {
2520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveMissingKey();
2540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveNullKeyMissing__MapTestsWithBadHashes() throws Exception {
2570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveNullKeyMissing();
2590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveNullKeyPresent__MapTestsWithBadHashes() throws Exception {
2620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveNullKeyPresent();
2640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRetainAll__MapTestsWithBadHashes() throws Exception {
2670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRetainAll();
2690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception {
2720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRetainAllNullFromEmpty();
2740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetSetValue__MapTestsWithBadHashes() throws Exception {
2770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetSetValue();
2790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetSetValueSameValue__MapTestsWithBadHashes() throws Exception {
2820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetSetValueSameValue();
2840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForEmptyMap__MapTestsWithBadHashes() throws Exception {
2870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForEmptyMap();
2890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForEqualMap__MapTestsWithBadHashes() throws Exception {
2920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForEqualMap();
2940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
2950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
2960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForLargerMap__MapTestsWithBadHashes() throws Exception {
2970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
2980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForLargerMap();
2990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForSmallerMap__MapTestsWithBadHashes() throws Exception {
3020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForSmallerMap();
3040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGet__MapTestsWithBadHashes() throws Exception {
3070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGet();
3090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGetForEmptyMap__MapTestsWithBadHashes() throws Exception {
3120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGetForEmptyMap();
3140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGetNull__MapTestsWithBadHashes() throws Exception {
3170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGetNull();
3190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testHashCode__MapTestsWithBadHashes() throws Exception {
3220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testHashCode();
3240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testHashCodeForEmptyMap__MapTestsWithBadHashes() throws Exception {
3270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testHashCodeForEmptyMap();
3290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetClear__MapTestsWithBadHashes() throws Exception {
3320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetClear();
3340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemove__MapTestsWithBadHashes() throws Exception {
3370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemove();
3390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemoveAll__MapTestsWithBadHashes() throws Exception {
3420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemoveAll();
3440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception {
3470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemoveAllNullFromEmpty();
3490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRetainAll__MapTestsWithBadHashes() throws Exception {
3520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRetainAll();
3540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception {
3570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRetainAllNullFromEmpty();
3590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutAllExistingKey__MapTestsWithBadHashes() throws Exception {
3620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutAllExistingKey();
3640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutAllNewKey__MapTestsWithBadHashes() throws Exception {
3670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutAllNewKey();
3690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutExistingKey__MapTestsWithBadHashes() throws Exception {
3720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutExistingKey();
3740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNewKey__MapTestsWithBadHashes() throws Exception {
3770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNewKey();
3790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullKey__MapTestsWithBadHashes() throws Exception {
3820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullKey();
3840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullValue__MapTestsWithBadHashes() throws Exception {
3870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullValue();
3890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullValueForExistingKey__MapTestsWithBadHashes() throws Exception {
3920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullValueForExistingKey();
3940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
3950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
3960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testRemove__MapTestsWithBadHashes() throws Exception {
3970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
3980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testRemove();
3990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testRemoveMissingKey__MapTestsWithBadHashes() throws Exception {
4020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testRemoveMissingKey();
4040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testSize__MapTestsWithBadHashes() throws Exception {
4070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testSize();
4090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValues__MapTestsWithBadHashes() throws Exception {
4120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValues();
4140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesClear__MapTestsWithBadHashes() throws Exception {
4170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesClear();
4190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesIteratorRemove__MapTestsWithBadHashes() throws Exception {
4220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesIteratorRemove();
4240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemove__MapTestsWithBadHashes() throws Exception {
4270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemove();
4290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveAll__MapTestsWithBadHashes() throws Exception {
4320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveAll();
4340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception {
4370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveAllNullFromEmpty();
4390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveMissing__MapTestsWithBadHashes() throws Exception {
4420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveMissing();
4440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRetainAll__MapTestsWithBadHashes() throws Exception {
4470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRetainAll();
4490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception {
4520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes();
4530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRetainAllNullFromEmpty();
4540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testClear__SingletonMapTests() throws Exception {
4570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testClear();
4590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testContainsKey__SingletonMapTests() throws Exception {
4620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testContainsKey();
4640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testContainsValue__SingletonMapTests() throws Exception {
4670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testContainsValue();
4690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySet__SingletonMapTests() throws Exception {
4720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySet();
4740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetAddAndAddAll__SingletonMapTests() throws Exception {
4770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetAddAndAddAll();
4790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetClear__SingletonMapTests() throws Exception {
4820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetClear();
4840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryIncompatibleKey__SingletonMapTests() throws Exception {
4870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryIncompatibleKey();
4890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryNullKeyMissing__SingletonMapTests() throws Exception {
4920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryNullKeyMissing();
4940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
4950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
4960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryNullKeyPresent__SingletonMapTests() throws Exception {
4970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
4980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryNullKeyPresent();
4990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetForEmptyMap__SingletonMapTests() throws Exception {
5020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetForEmptyMap();
5040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetIteratorRemove__SingletonMapTests() throws Exception {
5070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetIteratorRemove();
5090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemove__SingletonMapTests() throws Exception {
5120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemove();
5140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveAll__SingletonMapTests() throws Exception {
5170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveAll();
5190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception {
5220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveAllNullFromEmpty();
5240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveDifferentValue__SingletonMapTests() throws Exception {
5270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveDifferentValue();
5290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveMissingKey__SingletonMapTests() throws Exception {
5320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveMissingKey();
5340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveNullKeyMissing__SingletonMapTests() throws Exception {
5370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveNullKeyMissing();
5390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveNullKeyPresent__SingletonMapTests() throws Exception {
5420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveNullKeyPresent();
5440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRetainAll__SingletonMapTests() throws Exception {
5470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRetainAll();
5490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception {
5520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRetainAllNullFromEmpty();
5540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetSetValue__SingletonMapTests() throws Exception {
5570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetSetValue();
5590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetSetValueSameValue__SingletonMapTests() throws Exception {
5620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetSetValueSameValue();
5640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForEmptyMap__SingletonMapTests() throws Exception {
5670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForEmptyMap();
5690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForEqualMap__SingletonMapTests() throws Exception {
5720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForEqualMap();
5740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForLargerMap__SingletonMapTests() throws Exception {
5770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForLargerMap();
5790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForSmallerMap__SingletonMapTests() throws Exception {
5820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForSmallerMap();
5840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGet__SingletonMapTests() throws Exception {
5870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGet();
5890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGetForEmptyMap__SingletonMapTests() throws Exception {
5920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGetForEmptyMap();
5940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
5950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
5960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGetNull__SingletonMapTests() throws Exception {
5970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
5980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGetNull();
5990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testHashCode__SingletonMapTests() throws Exception {
6020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testHashCode();
6040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testHashCodeForEmptyMap__SingletonMapTests() throws Exception {
6070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testHashCodeForEmptyMap();
6090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetClear__SingletonMapTests() throws Exception {
6120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetClear();
6140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemove__SingletonMapTests() throws Exception {
6170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemove();
6190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemoveAll__SingletonMapTests() throws Exception {
6220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemoveAll();
6240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception {
6270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemoveAllNullFromEmpty();
6290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRetainAll__SingletonMapTests() throws Exception {
6320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRetainAll();
6340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception {
6370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRetainAllNullFromEmpty();
6390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutAllExistingKey__SingletonMapTests() throws Exception {
6420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutAllExistingKey();
6440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutAllNewKey__SingletonMapTests() throws Exception {
6470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutAllNewKey();
6490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutExistingKey__SingletonMapTests() throws Exception {
6520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutExistingKey();
6540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNewKey__SingletonMapTests() throws Exception {
6570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNewKey();
6590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullKey__SingletonMapTests() throws Exception {
6620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullKey();
6640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullValue__SingletonMapTests() throws Exception {
6670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullValue();
6690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullValueForExistingKey__SingletonMapTests() throws Exception {
6720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullValueForExistingKey();
6740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testRemove__SingletonMapTests() throws Exception {
6770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testRemove();
6790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testRemoveMissingKey__SingletonMapTests() throws Exception {
6820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testRemoveMissingKey();
6840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testSize__SingletonMapTests() throws Exception {
6870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testSize();
6890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValues__SingletonMapTests() throws Exception {
6920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValues();
6940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
6950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
6960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesClear__SingletonMapTests() throws Exception {
6970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
6980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesClear();
6990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesIteratorRemove__SingletonMapTests() throws Exception {
7020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
7030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesIteratorRemove();
7040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemove__SingletonMapTests() throws Exception {
7070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
7080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemove();
7090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveAll__SingletonMapTests() throws Exception {
7120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
7130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveAll();
7140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveAllNullFromEmpty__SingletonMapTests() throws Exception {
7170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
7180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveAllNullFromEmpty();
7190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveMissing__SingletonMapTests() throws Exception {
7220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
7230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveMissing();
7240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRetainAll__SingletonMapTests() throws Exception {
7270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
7280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRetainAll();
7290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRetainAllNullFromEmpty__SingletonMapTests() throws Exception {
7320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests();
7330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRetainAllNullFromEmpty();
7340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testClear__MapTests() throws Exception {
7370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testClear();
7390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testContainsKey__MapTests() throws Exception {
7420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testContainsKey();
7440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testContainsValue__MapTests() throws Exception {
7470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testContainsValue();
7490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySet__MapTests() throws Exception {
7520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySet();
7540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetAddAndAddAll__MapTests() throws Exception {
7570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetAddAndAddAll();
7590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetClear__MapTests() throws Exception {
7620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetClear();
7640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryIncompatibleKey__MapTests() throws Exception {
7670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryIncompatibleKey();
7690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryNullKeyMissing__MapTests() throws Exception {
7720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryNullKeyMissing();
7740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetContainsEntryNullKeyPresent__MapTests() throws Exception {
7770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetContainsEntryNullKeyPresent();
7790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetForEmptyMap__MapTests() throws Exception {
7820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetForEmptyMap();
7840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetIteratorRemove__MapTests() throws Exception {
7870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetIteratorRemove();
7890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemove__MapTests() throws Exception {
7920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemove();
7940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
7950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
7960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveAll__MapTests() throws Exception {
7970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
7980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveAll();
7990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveAllNullFromEmpty__MapTests() throws Exception {
8020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveAllNullFromEmpty();
8040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveDifferentValue__MapTests() throws Exception {
8070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveDifferentValue();
8090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveMissingKey__MapTests() throws Exception {
8120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveMissingKey();
8140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveNullKeyMissing__MapTests() throws Exception {
8170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveNullKeyMissing();
8190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRemoveNullKeyPresent__MapTests() throws Exception {
8220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRemoveNullKeyPresent();
8240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRetainAll__MapTests() throws Exception {
8270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRetainAll();
8290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetRetainAllNullFromEmpty__MapTests() throws Exception {
8320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetRetainAllNullFromEmpty();
8340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetSetValue__MapTests() throws Exception {
8370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetSetValue();
8390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEntrySetSetValueSameValue__MapTests() throws Exception {
8420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEntrySetSetValueSameValue();
8440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForEmptyMap__MapTests() throws Exception {
8470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForEmptyMap();
8490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForEqualMap__MapTests() throws Exception {
8520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForEqualMap();
8540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForLargerMap__MapTests() throws Exception {
8570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForLargerMap();
8590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testEqualsForSmallerMap__MapTests() throws Exception {
8620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testEqualsForSmallerMap();
8640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGet__MapTests() throws Exception {
8670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGet();
8690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGetForEmptyMap__MapTests() throws Exception {
8720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGetForEmptyMap();
8740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testGetNull__MapTests() throws Exception {
8770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testGetNull();
8790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testHashCode__MapTests() throws Exception {
8820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testHashCode();
8840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testHashCodeForEmptyMap__MapTests() throws Exception {
8870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testHashCodeForEmptyMap();
8890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetClear__MapTests() throws Exception {
8920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetClear();
8940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
8950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
8960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemove__MapTests() throws Exception {
8970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
8980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemove();
8990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemoveAll__MapTests() throws Exception {
9020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemoveAll();
9040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRemoveAllNullFromEmpty__MapTests() throws Exception {
9070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRemoveAllNullFromEmpty();
9090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRetainAll__MapTests() throws Exception {
9120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRetainAll();
9140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9150888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9160888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testKeySetRetainAllNullFromEmpty__MapTests() throws Exception {
9170888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9180888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testKeySetRetainAllNullFromEmpty();
9190888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9200888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9210888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutAllExistingKey__MapTests() throws Exception {
9220888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9230888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutAllExistingKey();
9240888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9250888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9260888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutAllNewKey__MapTests() throws Exception {
9270888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9280888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutAllNewKey();
9290888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9300888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9310888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutExistingKey__MapTests() throws Exception {
9320888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9330888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutExistingKey();
9340888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9350888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9360888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNewKey__MapTests() throws Exception {
9370888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9380888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNewKey();
9390888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9400888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9410888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullKey__MapTests() throws Exception {
9420888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9430888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullKey();
9440888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9450888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9460888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullValue__MapTests() throws Exception {
9470888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9480888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullValue();
9490888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9500888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9510888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testPutNullValueForExistingKey__MapTests() throws Exception {
9520888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9530888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testPutNullValueForExistingKey();
9540888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9550888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9560888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testRemove__MapTests() throws Exception {
9570888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9580888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testRemove();
9590888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9600888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9610888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testRemoveMissingKey__MapTests() throws Exception {
9620888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9630888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testRemoveMissingKey();
9640888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9650888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9660888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testSize__MapTests() throws Exception {
9670888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9680888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testSize();
9690888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9700888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9710888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValues__MapTests() throws Exception {
9720888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9730888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValues();
9740888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9750888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9760888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesClear__MapTests() throws Exception {
9770888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9780888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesClear();
9790888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9800888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9810888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesIteratorRemove__MapTests() throws Exception {
9820888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9830888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesIteratorRemove();
9840888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9850888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9860888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemove__MapTests() throws Exception {
9870888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9880888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemove();
9890888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9900888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9910888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveAll__MapTests() throws Exception {
9920888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9930888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveAll();
9940888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
9950888a09821a98ac0680fad765217302858e70fa4Paul Duffin
9960888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveAllNullFromEmpty__MapTests() throws Exception {
9970888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
9980888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveAllNullFromEmpty();
9990888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
10000888a09821a98ac0680fad765217302858e70fa4Paul Duffin
10010888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRemoveMissing__MapTests() throws Exception {
10020888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
10030888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRemoveMissing();
10040888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
10050888a09821a98ac0680fad765217302858e70fa4Paul Duffin
10060888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRetainAll__MapTests() throws Exception {
10070888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
10080888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRetainAll();
10090888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
10100888a09821a98ac0680fad765217302858e70fa4Paul Duffin
10110888a09821a98ac0680fad765217302858e70fa4Paul Duffinpublic void testValuesRetainAllNullFromEmpty__MapTests() throws Exception {
10120888a09821a98ac0680fad765217302858e70fa4Paul Duffin  com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests();
10130888a09821a98ac0680fad765217302858e70fa4Paul Duffin  testCase.testValuesRetainAllNullFromEmpty();
10140888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
10150888a09821a98ac0680fad765217302858e70fa4Paul Duffin}
1016