1/* 2 * Copyright (C) 2008 The Guava Authors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16package com.google.common.collect; 17public class ImmutableMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { 18@Override public String getModuleName() { 19 return "com.google.common.collect.testModule"; 20} 21public void testAsMultimap() throws Exception { 22 com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); 23 testCase.testAsMultimap(); 24} 25 26public void testAsMultimapCaches() throws Exception { 27 com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); 28 testCase.testAsMultimapCaches(); 29} 30 31public void testAsMultimapWhenEmpty() throws Exception { 32 com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); 33 testCase.testAsMultimapWhenEmpty(); 34} 35 36public void testCopyOfEnumMap() throws Exception { 37 com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); 38 testCase.testCopyOfEnumMap(); 39} 40 41public void testEquals() throws Exception { 42 com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); 43 testCase.testEquals(); 44} 45 46public void testMutableValues() throws Exception { 47 com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); 48 testCase.testMutableValues(); 49} 50 51public void testNullGet() throws Exception { 52 com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); 53 testCase.testNullGet(); 54} 55 56public void testBuilder__CreationTests() throws Exception { 57 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 58 testCase.testBuilder(); 59} 60 61public void testBuilderPutAll__CreationTests() throws Exception { 62 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 63 testCase.testBuilderPutAll(); 64} 65 66public void testBuilderPutAllWithEmptyMap__CreationTests() throws Exception { 67 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 68 testCase.testBuilderPutAllWithEmptyMap(); 69} 70 71public void testBuilderPutImmutableEntryWithNullKeyFailsAtomically__CreationTests() throws Exception { 72 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 73 testCase.testBuilderPutImmutableEntryWithNullKeyFailsAtomically(); 74} 75 76public void testBuilderPutMutableEntryWithNullKeyFailsAtomically__CreationTests() throws Exception { 77 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 78 testCase.testBuilderPutMutableEntryWithNullKeyFailsAtomically(); 79} 80 81public void testBuilderPutNullKey__CreationTests() throws Exception { 82 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 83 testCase.testBuilderPutNullKey(); 84} 85 86public void testBuilderPutNullKeyFailsAtomically__CreationTests() throws Exception { 87 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 88 testCase.testBuilderPutNullKeyFailsAtomically(); 89} 90 91public void testBuilderPutNullKeyViaPutAll__CreationTests() throws Exception { 92 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 93 testCase.testBuilderPutNullKeyViaPutAll(); 94} 95 96public void testBuilderPutNullValue__CreationTests() throws Exception { 97 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 98 testCase.testBuilderPutNullValue(); 99} 100 101public void testBuilderPutNullValueViaPutAll__CreationTests() throws Exception { 102 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 103 testCase.testBuilderPutNullValueViaPutAll(); 104} 105 106public void testBuilderReuse__CreationTests() throws Exception { 107 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 108 testCase.testBuilderReuse(); 109} 110 111public void testBuilder_withImmutableEntry__CreationTests() throws Exception { 112 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 113 testCase.testBuilder_withImmutableEntry(); 114} 115 116public void testBuilder_withImmutableEntryAndNullContents__CreationTests() throws Exception { 117 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 118 testCase.testBuilder_withImmutableEntryAndNullContents(); 119} 120 121public void testBuilder_withMutableEntry__CreationTests() throws Exception { 122 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 123 testCase.testBuilder_withMutableEntry(); 124} 125 126public void testCopyOf__CreationTests() throws Exception { 127 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 128 testCase.testCopyOf(); 129} 130 131public void testCopyOfEmptyMap__CreationTests() throws Exception { 132 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 133 testCase.testCopyOfEmptyMap(); 134} 135 136public void testCopyOfSingletonMap__CreationTests() throws Exception { 137 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 138 testCase.testCopyOfSingletonMap(); 139} 140 141public void testEmptyBuilder__CreationTests() throws Exception { 142 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 143 testCase.testEmptyBuilder(); 144} 145 146public void testOf__CreationTests() throws Exception { 147 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 148 testCase.testOf(); 149} 150 151public void testOfNullKey__CreationTests() throws Exception { 152 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 153 testCase.testOfNullKey(); 154} 155 156public void testOfNullValue__CreationTests() throws Exception { 157 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 158 testCase.testOfNullValue(); 159} 160 161public void testOfWithDuplicateKey__CreationTests() throws Exception { 162 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 163 testCase.testOfWithDuplicateKey(); 164} 165 166public void testPuttingTheSameKeyTwiceThrowsOnBuild__CreationTests() throws Exception { 167 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 168 testCase.testPuttingTheSameKeyTwiceThrowsOnBuild(); 169} 170 171public void testSingletonBuilder__CreationTests() throws Exception { 172 com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); 173 testCase.testSingletonBuilder(); 174} 175 176public void testClear__MapTestsWithBadHashes() throws Exception { 177 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 178 testCase.testClear(); 179} 180 181public void testContainsKey__MapTestsWithBadHashes() throws Exception { 182 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 183 testCase.testContainsKey(); 184} 185 186public void testContainsValue__MapTestsWithBadHashes() throws Exception { 187 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 188 testCase.testContainsValue(); 189} 190 191public void testEntrySet__MapTestsWithBadHashes() throws Exception { 192 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 193 testCase.testEntrySet(); 194} 195 196public void testEntrySetAddAndAddAll__MapTestsWithBadHashes() throws Exception { 197 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 198 testCase.testEntrySetAddAndAddAll(); 199} 200 201public void testEntrySetClear__MapTestsWithBadHashes() throws Exception { 202 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 203 testCase.testEntrySetClear(); 204} 205 206public void testEntrySetContainsEntryIncompatibleKey__MapTestsWithBadHashes() throws Exception { 207 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 208 testCase.testEntrySetContainsEntryIncompatibleKey(); 209} 210 211public void testEntrySetContainsEntryNullKeyMissing__MapTestsWithBadHashes() throws Exception { 212 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 213 testCase.testEntrySetContainsEntryNullKeyMissing(); 214} 215 216public void testEntrySetContainsEntryNullKeyPresent__MapTestsWithBadHashes() throws Exception { 217 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 218 testCase.testEntrySetContainsEntryNullKeyPresent(); 219} 220 221public void testEntrySetForEmptyMap__MapTestsWithBadHashes() throws Exception { 222 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 223 testCase.testEntrySetForEmptyMap(); 224} 225 226public void testEntrySetIteratorRemove__MapTestsWithBadHashes() throws Exception { 227 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 228 testCase.testEntrySetIteratorRemove(); 229} 230 231public void testEntrySetRemove__MapTestsWithBadHashes() throws Exception { 232 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 233 testCase.testEntrySetRemove(); 234} 235 236public void testEntrySetRemoveAll__MapTestsWithBadHashes() throws Exception { 237 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 238 testCase.testEntrySetRemoveAll(); 239} 240 241public void testEntrySetRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { 242 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 243 testCase.testEntrySetRemoveAllNullFromEmpty(); 244} 245 246public void testEntrySetRemoveDifferentValue__MapTestsWithBadHashes() throws Exception { 247 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 248 testCase.testEntrySetRemoveDifferentValue(); 249} 250 251public void testEntrySetRemoveMissingKey__MapTestsWithBadHashes() throws Exception { 252 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 253 testCase.testEntrySetRemoveMissingKey(); 254} 255 256public void testEntrySetRemoveNullKeyMissing__MapTestsWithBadHashes() throws Exception { 257 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 258 testCase.testEntrySetRemoveNullKeyMissing(); 259} 260 261public void testEntrySetRemoveNullKeyPresent__MapTestsWithBadHashes() throws Exception { 262 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 263 testCase.testEntrySetRemoveNullKeyPresent(); 264} 265 266public void testEntrySetRetainAll__MapTestsWithBadHashes() throws Exception { 267 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 268 testCase.testEntrySetRetainAll(); 269} 270 271public void testEntrySetRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { 272 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 273 testCase.testEntrySetRetainAllNullFromEmpty(); 274} 275 276public void testEntrySetSetValue__MapTestsWithBadHashes() throws Exception { 277 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 278 testCase.testEntrySetSetValue(); 279} 280 281public void testEntrySetSetValueSameValue__MapTestsWithBadHashes() throws Exception { 282 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 283 testCase.testEntrySetSetValueSameValue(); 284} 285 286public void testEqualsForEmptyMap__MapTestsWithBadHashes() throws Exception { 287 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 288 testCase.testEqualsForEmptyMap(); 289} 290 291public void testEqualsForEqualMap__MapTestsWithBadHashes() throws Exception { 292 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 293 testCase.testEqualsForEqualMap(); 294} 295 296public void testEqualsForLargerMap__MapTestsWithBadHashes() throws Exception { 297 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 298 testCase.testEqualsForLargerMap(); 299} 300 301public void testEqualsForSmallerMap__MapTestsWithBadHashes() throws Exception { 302 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 303 testCase.testEqualsForSmallerMap(); 304} 305 306public void testGet__MapTestsWithBadHashes() throws Exception { 307 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 308 testCase.testGet(); 309} 310 311public void testGetForEmptyMap__MapTestsWithBadHashes() throws Exception { 312 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 313 testCase.testGetForEmptyMap(); 314} 315 316public void testGetNull__MapTestsWithBadHashes() throws Exception { 317 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 318 testCase.testGetNull(); 319} 320 321public void testHashCode__MapTestsWithBadHashes() throws Exception { 322 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 323 testCase.testHashCode(); 324} 325 326public void testHashCodeForEmptyMap__MapTestsWithBadHashes() throws Exception { 327 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 328 testCase.testHashCodeForEmptyMap(); 329} 330 331public void testKeySetClear__MapTestsWithBadHashes() throws Exception { 332 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 333 testCase.testKeySetClear(); 334} 335 336public void testKeySetRemove__MapTestsWithBadHashes() throws Exception { 337 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 338 testCase.testKeySetRemove(); 339} 340 341public void testKeySetRemoveAll__MapTestsWithBadHashes() throws Exception { 342 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 343 testCase.testKeySetRemoveAll(); 344} 345 346public void testKeySetRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { 347 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 348 testCase.testKeySetRemoveAllNullFromEmpty(); 349} 350 351public void testKeySetRetainAll__MapTestsWithBadHashes() throws Exception { 352 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 353 testCase.testKeySetRetainAll(); 354} 355 356public void testKeySetRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { 357 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 358 testCase.testKeySetRetainAllNullFromEmpty(); 359} 360 361public void testPutAllExistingKey__MapTestsWithBadHashes() throws Exception { 362 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 363 testCase.testPutAllExistingKey(); 364} 365 366public void testPutAllNewKey__MapTestsWithBadHashes() throws Exception { 367 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 368 testCase.testPutAllNewKey(); 369} 370 371public void testPutExistingKey__MapTestsWithBadHashes() throws Exception { 372 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 373 testCase.testPutExistingKey(); 374} 375 376public void testPutNewKey__MapTestsWithBadHashes() throws Exception { 377 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 378 testCase.testPutNewKey(); 379} 380 381public void testPutNullKey__MapTestsWithBadHashes() throws Exception { 382 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 383 testCase.testPutNullKey(); 384} 385 386public void testPutNullValue__MapTestsWithBadHashes() throws Exception { 387 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 388 testCase.testPutNullValue(); 389} 390 391public void testPutNullValueForExistingKey__MapTestsWithBadHashes() throws Exception { 392 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 393 testCase.testPutNullValueForExistingKey(); 394} 395 396public void testRemove__MapTestsWithBadHashes() throws Exception { 397 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 398 testCase.testRemove(); 399} 400 401public void testRemoveMissingKey__MapTestsWithBadHashes() throws Exception { 402 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 403 testCase.testRemoveMissingKey(); 404} 405 406public void testSize__MapTestsWithBadHashes() throws Exception { 407 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 408 testCase.testSize(); 409} 410 411public void testValues__MapTestsWithBadHashes() throws Exception { 412 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 413 testCase.testValues(); 414} 415 416public void testValuesClear__MapTestsWithBadHashes() throws Exception { 417 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 418 testCase.testValuesClear(); 419} 420 421public void testValuesIteratorRemove__MapTestsWithBadHashes() throws Exception { 422 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 423 testCase.testValuesIteratorRemove(); 424} 425 426public void testValuesRemove__MapTestsWithBadHashes() throws Exception { 427 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 428 testCase.testValuesRemove(); 429} 430 431public void testValuesRemoveAll__MapTestsWithBadHashes() throws Exception { 432 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 433 testCase.testValuesRemoveAll(); 434} 435 436public void testValuesRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { 437 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 438 testCase.testValuesRemoveAllNullFromEmpty(); 439} 440 441public void testValuesRemoveMissing__MapTestsWithBadHashes() throws Exception { 442 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 443 testCase.testValuesRemoveMissing(); 444} 445 446public void testValuesRetainAll__MapTestsWithBadHashes() throws Exception { 447 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 448 testCase.testValuesRetainAll(); 449} 450 451public void testValuesRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { 452 com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); 453 testCase.testValuesRetainAllNullFromEmpty(); 454} 455 456public void testClear__SingletonMapTests() throws Exception { 457 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 458 testCase.testClear(); 459} 460 461public void testContainsKey__SingletonMapTests() throws Exception { 462 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 463 testCase.testContainsKey(); 464} 465 466public void testContainsValue__SingletonMapTests() throws Exception { 467 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 468 testCase.testContainsValue(); 469} 470 471public void testEntrySet__SingletonMapTests() throws Exception { 472 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 473 testCase.testEntrySet(); 474} 475 476public void testEntrySetAddAndAddAll__SingletonMapTests() throws Exception { 477 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 478 testCase.testEntrySetAddAndAddAll(); 479} 480 481public void testEntrySetClear__SingletonMapTests() throws Exception { 482 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 483 testCase.testEntrySetClear(); 484} 485 486public void testEntrySetContainsEntryIncompatibleKey__SingletonMapTests() throws Exception { 487 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 488 testCase.testEntrySetContainsEntryIncompatibleKey(); 489} 490 491public void testEntrySetContainsEntryNullKeyMissing__SingletonMapTests() throws Exception { 492 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 493 testCase.testEntrySetContainsEntryNullKeyMissing(); 494} 495 496public void testEntrySetContainsEntryNullKeyPresent__SingletonMapTests() throws Exception { 497 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 498 testCase.testEntrySetContainsEntryNullKeyPresent(); 499} 500 501public void testEntrySetForEmptyMap__SingletonMapTests() throws Exception { 502 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 503 testCase.testEntrySetForEmptyMap(); 504} 505 506public void testEntrySetIteratorRemove__SingletonMapTests() throws Exception { 507 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 508 testCase.testEntrySetIteratorRemove(); 509} 510 511public void testEntrySetRemove__SingletonMapTests() throws Exception { 512 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 513 testCase.testEntrySetRemove(); 514} 515 516public void testEntrySetRemoveAll__SingletonMapTests() throws Exception { 517 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 518 testCase.testEntrySetRemoveAll(); 519} 520 521public void testEntrySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { 522 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 523 testCase.testEntrySetRemoveAllNullFromEmpty(); 524} 525 526public void testEntrySetRemoveDifferentValue__SingletonMapTests() throws Exception { 527 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 528 testCase.testEntrySetRemoveDifferentValue(); 529} 530 531public void testEntrySetRemoveMissingKey__SingletonMapTests() throws Exception { 532 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 533 testCase.testEntrySetRemoveMissingKey(); 534} 535 536public void testEntrySetRemoveNullKeyMissing__SingletonMapTests() throws Exception { 537 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 538 testCase.testEntrySetRemoveNullKeyMissing(); 539} 540 541public void testEntrySetRemoveNullKeyPresent__SingletonMapTests() throws Exception { 542 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 543 testCase.testEntrySetRemoveNullKeyPresent(); 544} 545 546public void testEntrySetRetainAll__SingletonMapTests() throws Exception { 547 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 548 testCase.testEntrySetRetainAll(); 549} 550 551public void testEntrySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception { 552 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 553 testCase.testEntrySetRetainAllNullFromEmpty(); 554} 555 556public void testEntrySetSetValue__SingletonMapTests() throws Exception { 557 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 558 testCase.testEntrySetSetValue(); 559} 560 561public void testEntrySetSetValueSameValue__SingletonMapTests() throws Exception { 562 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 563 testCase.testEntrySetSetValueSameValue(); 564} 565 566public void testEqualsForEmptyMap__SingletonMapTests() throws Exception { 567 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 568 testCase.testEqualsForEmptyMap(); 569} 570 571public void testEqualsForEqualMap__SingletonMapTests() throws Exception { 572 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 573 testCase.testEqualsForEqualMap(); 574} 575 576public void testEqualsForLargerMap__SingletonMapTests() throws Exception { 577 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 578 testCase.testEqualsForLargerMap(); 579} 580 581public void testEqualsForSmallerMap__SingletonMapTests() throws Exception { 582 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 583 testCase.testEqualsForSmallerMap(); 584} 585 586public void testGet__SingletonMapTests() throws Exception { 587 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 588 testCase.testGet(); 589} 590 591public void testGetForEmptyMap__SingletonMapTests() throws Exception { 592 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 593 testCase.testGetForEmptyMap(); 594} 595 596public void testGetNull__SingletonMapTests() throws Exception { 597 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 598 testCase.testGetNull(); 599} 600 601public void testHashCode__SingletonMapTests() throws Exception { 602 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 603 testCase.testHashCode(); 604} 605 606public void testHashCodeForEmptyMap__SingletonMapTests() throws Exception { 607 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 608 testCase.testHashCodeForEmptyMap(); 609} 610 611public void testKeySetClear__SingletonMapTests() throws Exception { 612 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 613 testCase.testKeySetClear(); 614} 615 616public void testKeySetRemove__SingletonMapTests() throws Exception { 617 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 618 testCase.testKeySetRemove(); 619} 620 621public void testKeySetRemoveAll__SingletonMapTests() throws Exception { 622 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 623 testCase.testKeySetRemoveAll(); 624} 625 626public void testKeySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { 627 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 628 testCase.testKeySetRemoveAllNullFromEmpty(); 629} 630 631public void testKeySetRetainAll__SingletonMapTests() throws Exception { 632 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 633 testCase.testKeySetRetainAll(); 634} 635 636public void testKeySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception { 637 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 638 testCase.testKeySetRetainAllNullFromEmpty(); 639} 640 641public void testPutAllExistingKey__SingletonMapTests() throws Exception { 642 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 643 testCase.testPutAllExistingKey(); 644} 645 646public void testPutAllNewKey__SingletonMapTests() throws Exception { 647 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 648 testCase.testPutAllNewKey(); 649} 650 651public void testPutExistingKey__SingletonMapTests() throws Exception { 652 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 653 testCase.testPutExistingKey(); 654} 655 656public void testPutNewKey__SingletonMapTests() throws Exception { 657 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 658 testCase.testPutNewKey(); 659} 660 661public void testPutNullKey__SingletonMapTests() throws Exception { 662 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 663 testCase.testPutNullKey(); 664} 665 666public void testPutNullValue__SingletonMapTests() throws Exception { 667 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 668 testCase.testPutNullValue(); 669} 670 671public void testPutNullValueForExistingKey__SingletonMapTests() throws Exception { 672 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 673 testCase.testPutNullValueForExistingKey(); 674} 675 676public void testRemove__SingletonMapTests() throws Exception { 677 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 678 testCase.testRemove(); 679} 680 681public void testRemoveMissingKey__SingletonMapTests() throws Exception { 682 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 683 testCase.testRemoveMissingKey(); 684} 685 686public void testSize__SingletonMapTests() throws Exception { 687 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 688 testCase.testSize(); 689} 690 691public void testValues__SingletonMapTests() throws Exception { 692 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 693 testCase.testValues(); 694} 695 696public void testValuesClear__SingletonMapTests() throws Exception { 697 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 698 testCase.testValuesClear(); 699} 700 701public void testValuesIteratorRemove__SingletonMapTests() throws Exception { 702 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 703 testCase.testValuesIteratorRemove(); 704} 705 706public void testValuesRemove__SingletonMapTests() throws Exception { 707 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 708 testCase.testValuesRemove(); 709} 710 711public void testValuesRemoveAll__SingletonMapTests() throws Exception { 712 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 713 testCase.testValuesRemoveAll(); 714} 715 716public void testValuesRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { 717 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 718 testCase.testValuesRemoveAllNullFromEmpty(); 719} 720 721public void testValuesRemoveMissing__SingletonMapTests() throws Exception { 722 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 723 testCase.testValuesRemoveMissing(); 724} 725 726public void testValuesRetainAll__SingletonMapTests() throws Exception { 727 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 728 testCase.testValuesRetainAll(); 729} 730 731public void testValuesRetainAllNullFromEmpty__SingletonMapTests() throws Exception { 732 com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); 733 testCase.testValuesRetainAllNullFromEmpty(); 734} 735 736public void testClear__MapTests() throws Exception { 737 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 738 testCase.testClear(); 739} 740 741public void testContainsKey__MapTests() throws Exception { 742 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 743 testCase.testContainsKey(); 744} 745 746public void testContainsValue__MapTests() throws Exception { 747 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 748 testCase.testContainsValue(); 749} 750 751public void testEntrySet__MapTests() throws Exception { 752 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 753 testCase.testEntrySet(); 754} 755 756public void testEntrySetAddAndAddAll__MapTests() throws Exception { 757 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 758 testCase.testEntrySetAddAndAddAll(); 759} 760 761public void testEntrySetClear__MapTests() throws Exception { 762 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 763 testCase.testEntrySetClear(); 764} 765 766public void testEntrySetContainsEntryIncompatibleKey__MapTests() throws Exception { 767 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 768 testCase.testEntrySetContainsEntryIncompatibleKey(); 769} 770 771public void testEntrySetContainsEntryNullKeyMissing__MapTests() throws Exception { 772 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 773 testCase.testEntrySetContainsEntryNullKeyMissing(); 774} 775 776public void testEntrySetContainsEntryNullKeyPresent__MapTests() throws Exception { 777 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 778 testCase.testEntrySetContainsEntryNullKeyPresent(); 779} 780 781public void testEntrySetForEmptyMap__MapTests() throws Exception { 782 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 783 testCase.testEntrySetForEmptyMap(); 784} 785 786public void testEntrySetIteratorRemove__MapTests() throws Exception { 787 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 788 testCase.testEntrySetIteratorRemove(); 789} 790 791public void testEntrySetRemove__MapTests() throws Exception { 792 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 793 testCase.testEntrySetRemove(); 794} 795 796public void testEntrySetRemoveAll__MapTests() throws Exception { 797 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 798 testCase.testEntrySetRemoveAll(); 799} 800 801public void testEntrySetRemoveAllNullFromEmpty__MapTests() throws Exception { 802 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 803 testCase.testEntrySetRemoveAllNullFromEmpty(); 804} 805 806public void testEntrySetRemoveDifferentValue__MapTests() throws Exception { 807 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 808 testCase.testEntrySetRemoveDifferentValue(); 809} 810 811public void testEntrySetRemoveMissingKey__MapTests() throws Exception { 812 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 813 testCase.testEntrySetRemoveMissingKey(); 814} 815 816public void testEntrySetRemoveNullKeyMissing__MapTests() throws Exception { 817 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 818 testCase.testEntrySetRemoveNullKeyMissing(); 819} 820 821public void testEntrySetRemoveNullKeyPresent__MapTests() throws Exception { 822 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 823 testCase.testEntrySetRemoveNullKeyPresent(); 824} 825 826public void testEntrySetRetainAll__MapTests() throws Exception { 827 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 828 testCase.testEntrySetRetainAll(); 829} 830 831public void testEntrySetRetainAllNullFromEmpty__MapTests() throws Exception { 832 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 833 testCase.testEntrySetRetainAllNullFromEmpty(); 834} 835 836public void testEntrySetSetValue__MapTests() throws Exception { 837 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 838 testCase.testEntrySetSetValue(); 839} 840 841public void testEntrySetSetValueSameValue__MapTests() throws Exception { 842 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 843 testCase.testEntrySetSetValueSameValue(); 844} 845 846public void testEqualsForEmptyMap__MapTests() throws Exception { 847 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 848 testCase.testEqualsForEmptyMap(); 849} 850 851public void testEqualsForEqualMap__MapTests() throws Exception { 852 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 853 testCase.testEqualsForEqualMap(); 854} 855 856public void testEqualsForLargerMap__MapTests() throws Exception { 857 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 858 testCase.testEqualsForLargerMap(); 859} 860 861public void testEqualsForSmallerMap__MapTests() throws Exception { 862 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 863 testCase.testEqualsForSmallerMap(); 864} 865 866public void testGet__MapTests() throws Exception { 867 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 868 testCase.testGet(); 869} 870 871public void testGetForEmptyMap__MapTests() throws Exception { 872 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 873 testCase.testGetForEmptyMap(); 874} 875 876public void testGetNull__MapTests() throws Exception { 877 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 878 testCase.testGetNull(); 879} 880 881public void testHashCode__MapTests() throws Exception { 882 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 883 testCase.testHashCode(); 884} 885 886public void testHashCodeForEmptyMap__MapTests() throws Exception { 887 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 888 testCase.testHashCodeForEmptyMap(); 889} 890 891public void testKeySetClear__MapTests() throws Exception { 892 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 893 testCase.testKeySetClear(); 894} 895 896public void testKeySetRemove__MapTests() throws Exception { 897 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 898 testCase.testKeySetRemove(); 899} 900 901public void testKeySetRemoveAll__MapTests() throws Exception { 902 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 903 testCase.testKeySetRemoveAll(); 904} 905 906public void testKeySetRemoveAllNullFromEmpty__MapTests() throws Exception { 907 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 908 testCase.testKeySetRemoveAllNullFromEmpty(); 909} 910 911public void testKeySetRetainAll__MapTests() throws Exception { 912 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 913 testCase.testKeySetRetainAll(); 914} 915 916public void testKeySetRetainAllNullFromEmpty__MapTests() throws Exception { 917 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 918 testCase.testKeySetRetainAllNullFromEmpty(); 919} 920 921public void testPutAllExistingKey__MapTests() throws Exception { 922 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 923 testCase.testPutAllExistingKey(); 924} 925 926public void testPutAllNewKey__MapTests() throws Exception { 927 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 928 testCase.testPutAllNewKey(); 929} 930 931public void testPutExistingKey__MapTests() throws Exception { 932 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 933 testCase.testPutExistingKey(); 934} 935 936public void testPutNewKey__MapTests() throws Exception { 937 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 938 testCase.testPutNewKey(); 939} 940 941public void testPutNullKey__MapTests() throws Exception { 942 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 943 testCase.testPutNullKey(); 944} 945 946public void testPutNullValue__MapTests() throws Exception { 947 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 948 testCase.testPutNullValue(); 949} 950 951public void testPutNullValueForExistingKey__MapTests() throws Exception { 952 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 953 testCase.testPutNullValueForExistingKey(); 954} 955 956public void testRemove__MapTests() throws Exception { 957 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 958 testCase.testRemove(); 959} 960 961public void testRemoveMissingKey__MapTests() throws Exception { 962 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 963 testCase.testRemoveMissingKey(); 964} 965 966public void testSize__MapTests() throws Exception { 967 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 968 testCase.testSize(); 969} 970 971public void testValues__MapTests() throws Exception { 972 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 973 testCase.testValues(); 974} 975 976public void testValuesClear__MapTests() throws Exception { 977 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 978 testCase.testValuesClear(); 979} 980 981public void testValuesIteratorRemove__MapTests() throws Exception { 982 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 983 testCase.testValuesIteratorRemove(); 984} 985 986public void testValuesRemove__MapTests() throws Exception { 987 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 988 testCase.testValuesRemove(); 989} 990 991public void testValuesRemoveAll__MapTests() throws Exception { 992 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 993 testCase.testValuesRemoveAll(); 994} 995 996public void testValuesRemoveAllNullFromEmpty__MapTests() throws Exception { 997 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 998 testCase.testValuesRemoveAllNullFromEmpty(); 999} 1000 1001public void testValuesRemoveMissing__MapTests() throws Exception { 1002 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 1003 testCase.testValuesRemoveMissing(); 1004} 1005 1006public void testValuesRetainAll__MapTests() throws Exception { 1007 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 1008 testCase.testValuesRetainAll(); 1009} 1010 1011public void testValuesRetainAllNullFromEmpty__MapTests() throws Exception { 1012 com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); 1013 testCase.testValuesRetainAllNullFromEmpty(); 1014} 1015} 1016