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  */
16 package com.google.common.collect;
17 public class ImmutableBiMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
getModuleName()18 @Override public String getModuleName() {
19   return "com.google.common.collect.testModule";
20 }
testDoubleInverse__BiMapSpecificTests()21 public void testDoubleInverse__BiMapSpecificTests() throws Exception {
22   com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests();
23   testCase.testDoubleInverse();
24 }
25 
testForcePut__BiMapSpecificTests()26 public void testForcePut__BiMapSpecificTests() throws Exception {
27   com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests();
28   testCase.testForcePut();
29 }
30 
testKeySet__BiMapSpecificTests()31 public void testKeySet__BiMapSpecificTests() throws Exception {
32   com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests();
33   testCase.testKeySet();
34 }
35 
testValues__BiMapSpecificTests()36 public void testValues__BiMapSpecificTests() throws Exception {
37   com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests();
38   testCase.testValues();
39 }
40 
testBuilder__CreationTests()41 public void testBuilder__CreationTests() throws Exception {
42   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
43   testCase.testBuilder();
44 }
45 
testBuilderPutAll__CreationTests()46 public void testBuilderPutAll__CreationTests() throws Exception {
47   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
48   testCase.testBuilderPutAll();
49 }
50 
testBuilderPutAllWithEmptyMap__CreationTests()51 public void testBuilderPutAllWithEmptyMap__CreationTests() throws Exception {
52   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
53   testCase.testBuilderPutAllWithEmptyMap();
54 }
55 
testBuilderPutNullKey__CreationTests()56 public void testBuilderPutNullKey__CreationTests() throws Exception {
57   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
58   testCase.testBuilderPutNullKey();
59 }
60 
testBuilderPutNullKeyViaPutAll__CreationTests()61 public void testBuilderPutNullKeyViaPutAll__CreationTests() throws Exception {
62   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
63   testCase.testBuilderPutNullKeyViaPutAll();
64 }
65 
testBuilderPutNullValue__CreationTests()66 public void testBuilderPutNullValue__CreationTests() throws Exception {
67   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
68   testCase.testBuilderPutNullValue();
69 }
70 
testBuilderPutNullValueViaPutAll__CreationTests()71 public void testBuilderPutNullValueViaPutAll__CreationTests() throws Exception {
72   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
73   testCase.testBuilderPutNullValueViaPutAll();
74 }
75 
testBuilderReuse__CreationTests()76 public void testBuilderReuse__CreationTests() throws Exception {
77   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
78   testCase.testBuilderReuse();
79 }
80 
testCopyOf__CreationTests()81 public void testCopyOf__CreationTests() throws Exception {
82   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
83   testCase.testCopyOf();
84 }
85 
testCopyOfEmptyMap__CreationTests()86 public void testCopyOfEmptyMap__CreationTests() throws Exception {
87   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
88   testCase.testCopyOfEmptyMap();
89 }
90 
testCopyOfSingletonMap__CreationTests()91 public void testCopyOfSingletonMap__CreationTests() throws Exception {
92   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
93   testCase.testCopyOfSingletonMap();
94 }
95 
testDuplicateValues__CreationTests()96 public void testDuplicateValues__CreationTests() throws Exception {
97   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
98   testCase.testDuplicateValues();
99 }
100 
testEmpty__CreationTests()101 public void testEmpty__CreationTests() throws Exception {
102   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
103   testCase.testEmpty();
104 }
105 
testEmptyBuilder__CreationTests()106 public void testEmptyBuilder__CreationTests() throws Exception {
107   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
108   testCase.testEmptyBuilder();
109 }
110 
testFromHashMap__CreationTests()111 public void testFromHashMap__CreationTests() throws Exception {
112   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
113   testCase.testFromHashMap();
114 }
115 
testFromImmutableMap__CreationTests()116 public void testFromImmutableMap__CreationTests() throws Exception {
117   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
118   testCase.testFromImmutableMap();
119 }
120 
testOf__CreationTests()121 public void testOf__CreationTests() throws Exception {
122   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
123   testCase.testOf();
124 }
125 
testOfNullKey__CreationTests()126 public void testOfNullKey__CreationTests() throws Exception {
127   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
128   testCase.testOfNullKey();
129 }
130 
testOfNullValue__CreationTests()131 public void testOfNullValue__CreationTests() throws Exception {
132   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
133   testCase.testOfNullValue();
134 }
135 
testOfWithDuplicateKey__CreationTests()136 public void testOfWithDuplicateKey__CreationTests() throws Exception {
137   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
138   testCase.testOfWithDuplicateKey();
139 }
140 
testPuttingTheSameKeyTwiceThrowsOnBuild__CreationTests()141 public void testPuttingTheSameKeyTwiceThrowsOnBuild__CreationTests() throws Exception {
142   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
143   testCase.testPuttingTheSameKeyTwiceThrowsOnBuild();
144 }
145 
testSingletonBuilder__CreationTests()146 public void testSingletonBuilder__CreationTests() throws Exception {
147   com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests();
148   testCase.testSingletonBuilder();
149 }
150 
testClear__InverseMapTests()151 public void testClear__InverseMapTests() throws Exception {
152   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
153   testCase.testClear();
154 }
155 
testContainsKey__InverseMapTests()156 public void testContainsKey__InverseMapTests() throws Exception {
157   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
158   testCase.testContainsKey();
159 }
160 
testContainsValue__InverseMapTests()161 public void testContainsValue__InverseMapTests() throws Exception {
162   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
163   testCase.testContainsValue();
164 }
165 
testEntrySet__InverseMapTests()166 public void testEntrySet__InverseMapTests() throws Exception {
167   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
168   testCase.testEntrySet();
169 }
170 
testEntrySetAddAndAddAll__InverseMapTests()171 public void testEntrySetAddAndAddAll__InverseMapTests() throws Exception {
172   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
173   testCase.testEntrySetAddAndAddAll();
174 }
175 
testEntrySetClear__InverseMapTests()176 public void testEntrySetClear__InverseMapTests() throws Exception {
177   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
178   testCase.testEntrySetClear();
179 }
180 
testEntrySetContainsEntryIncompatibleKey__InverseMapTests()181 public void testEntrySetContainsEntryIncompatibleKey__InverseMapTests() throws Exception {
182   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
183   testCase.testEntrySetContainsEntryIncompatibleKey();
184 }
185 
testEntrySetContainsEntryNullKeyMissing__InverseMapTests()186 public void testEntrySetContainsEntryNullKeyMissing__InverseMapTests() throws Exception {
187   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
188   testCase.testEntrySetContainsEntryNullKeyMissing();
189 }
190 
testEntrySetContainsEntryNullKeyPresent__InverseMapTests()191 public void testEntrySetContainsEntryNullKeyPresent__InverseMapTests() throws Exception {
192   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
193   testCase.testEntrySetContainsEntryNullKeyPresent();
194 }
195 
testEntrySetForEmptyMap__InverseMapTests()196 public void testEntrySetForEmptyMap__InverseMapTests() throws Exception {
197   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
198   testCase.testEntrySetForEmptyMap();
199 }
200 
testEntrySetIteratorRemove__InverseMapTests()201 public void testEntrySetIteratorRemove__InverseMapTests() throws Exception {
202   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
203   testCase.testEntrySetIteratorRemove();
204 }
205 
testEntrySetRemove__InverseMapTests()206 public void testEntrySetRemove__InverseMapTests() throws Exception {
207   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
208   testCase.testEntrySetRemove();
209 }
210 
testEntrySetRemoveAll__InverseMapTests()211 public void testEntrySetRemoveAll__InverseMapTests() throws Exception {
212   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
213   testCase.testEntrySetRemoveAll();
214 }
215 
testEntrySetRemoveAllNullFromEmpty__InverseMapTests()216 public void testEntrySetRemoveAllNullFromEmpty__InverseMapTests() throws Exception {
217   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
218   testCase.testEntrySetRemoveAllNullFromEmpty();
219 }
220 
testEntrySetRemoveDifferentValue__InverseMapTests()221 public void testEntrySetRemoveDifferentValue__InverseMapTests() throws Exception {
222   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
223   testCase.testEntrySetRemoveDifferentValue();
224 }
225 
testEntrySetRemoveMissingKey__InverseMapTests()226 public void testEntrySetRemoveMissingKey__InverseMapTests() throws Exception {
227   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
228   testCase.testEntrySetRemoveMissingKey();
229 }
230 
testEntrySetRemoveNullKeyMissing__InverseMapTests()231 public void testEntrySetRemoveNullKeyMissing__InverseMapTests() throws Exception {
232   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
233   testCase.testEntrySetRemoveNullKeyMissing();
234 }
235 
testEntrySetRemoveNullKeyPresent__InverseMapTests()236 public void testEntrySetRemoveNullKeyPresent__InverseMapTests() throws Exception {
237   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
238   testCase.testEntrySetRemoveNullKeyPresent();
239 }
240 
testEntrySetRetainAll__InverseMapTests()241 public void testEntrySetRetainAll__InverseMapTests() throws Exception {
242   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
243   testCase.testEntrySetRetainAll();
244 }
245 
testEntrySetRetainAllNullFromEmpty__InverseMapTests()246 public void testEntrySetRetainAllNullFromEmpty__InverseMapTests() throws Exception {
247   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
248   testCase.testEntrySetRetainAllNullFromEmpty();
249 }
250 
testEntrySetSetValue__InverseMapTests()251 public void testEntrySetSetValue__InverseMapTests() throws Exception {
252   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
253   testCase.testEntrySetSetValue();
254 }
255 
testEntrySetSetValueSameValue__InverseMapTests()256 public void testEntrySetSetValueSameValue__InverseMapTests() throws Exception {
257   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
258   testCase.testEntrySetSetValueSameValue();
259 }
260 
testEqualsForEmptyMap__InverseMapTests()261 public void testEqualsForEmptyMap__InverseMapTests() throws Exception {
262   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
263   testCase.testEqualsForEmptyMap();
264 }
265 
testEqualsForEqualMap__InverseMapTests()266 public void testEqualsForEqualMap__InverseMapTests() throws Exception {
267   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
268   testCase.testEqualsForEqualMap();
269 }
270 
testEqualsForLargerMap__InverseMapTests()271 public void testEqualsForLargerMap__InverseMapTests() throws Exception {
272   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
273   testCase.testEqualsForLargerMap();
274 }
275 
testEqualsForSmallerMap__InverseMapTests()276 public void testEqualsForSmallerMap__InverseMapTests() throws Exception {
277   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
278   testCase.testEqualsForSmallerMap();
279 }
280 
testGet__InverseMapTests()281 public void testGet__InverseMapTests() throws Exception {
282   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
283   testCase.testGet();
284 }
285 
testGetForEmptyMap__InverseMapTests()286 public void testGetForEmptyMap__InverseMapTests() throws Exception {
287   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
288   testCase.testGetForEmptyMap();
289 }
290 
testGetNull__InverseMapTests()291 public void testGetNull__InverseMapTests() throws Exception {
292   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
293   testCase.testGetNull();
294 }
295 
testHashCode__InverseMapTests()296 public void testHashCode__InverseMapTests() throws Exception {
297   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
298   testCase.testHashCode();
299 }
300 
testHashCodeForEmptyMap__InverseMapTests()301 public void testHashCodeForEmptyMap__InverseMapTests() throws Exception {
302   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
303   testCase.testHashCodeForEmptyMap();
304 }
305 
testKeySetClear__InverseMapTests()306 public void testKeySetClear__InverseMapTests() throws Exception {
307   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
308   testCase.testKeySetClear();
309 }
310 
testKeySetRemove__InverseMapTests()311 public void testKeySetRemove__InverseMapTests() throws Exception {
312   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
313   testCase.testKeySetRemove();
314 }
315 
testKeySetRemoveAll__InverseMapTests()316 public void testKeySetRemoveAll__InverseMapTests() throws Exception {
317   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
318   testCase.testKeySetRemoveAll();
319 }
320 
testKeySetRemoveAllNullFromEmpty__InverseMapTests()321 public void testKeySetRemoveAllNullFromEmpty__InverseMapTests() throws Exception {
322   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
323   testCase.testKeySetRemoveAllNullFromEmpty();
324 }
325 
testKeySetRetainAll__InverseMapTests()326 public void testKeySetRetainAll__InverseMapTests() throws Exception {
327   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
328   testCase.testKeySetRetainAll();
329 }
330 
testKeySetRetainAllNullFromEmpty__InverseMapTests()331 public void testKeySetRetainAllNullFromEmpty__InverseMapTests() throws Exception {
332   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
333   testCase.testKeySetRetainAllNullFromEmpty();
334 }
335 
testPutAllExistingKey__InverseMapTests()336 public void testPutAllExistingKey__InverseMapTests() throws Exception {
337   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
338   testCase.testPutAllExistingKey();
339 }
340 
testPutAllNewKey__InverseMapTests()341 public void testPutAllNewKey__InverseMapTests() throws Exception {
342   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
343   testCase.testPutAllNewKey();
344 }
345 
testPutExistingKey__InverseMapTests()346 public void testPutExistingKey__InverseMapTests() throws Exception {
347   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
348   testCase.testPutExistingKey();
349 }
350 
testPutNewKey__InverseMapTests()351 public void testPutNewKey__InverseMapTests() throws Exception {
352   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
353   testCase.testPutNewKey();
354 }
355 
testPutNullKey__InverseMapTests()356 public void testPutNullKey__InverseMapTests() throws Exception {
357   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
358   testCase.testPutNullKey();
359 }
360 
testPutNullValue__InverseMapTests()361 public void testPutNullValue__InverseMapTests() throws Exception {
362   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
363   testCase.testPutNullValue();
364 }
365 
testPutNullValueForExistingKey__InverseMapTests()366 public void testPutNullValueForExistingKey__InverseMapTests() throws Exception {
367   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
368   testCase.testPutNullValueForExistingKey();
369 }
370 
testRemove__InverseMapTests()371 public void testRemove__InverseMapTests() throws Exception {
372   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
373   testCase.testRemove();
374 }
375 
testRemoveMissingKey__InverseMapTests()376 public void testRemoveMissingKey__InverseMapTests() throws Exception {
377   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
378   testCase.testRemoveMissingKey();
379 }
380 
testSize__InverseMapTests()381 public void testSize__InverseMapTests() throws Exception {
382   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
383   testCase.testSize();
384 }
385 
testValues__InverseMapTests()386 public void testValues__InverseMapTests() throws Exception {
387   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
388   testCase.testValues();
389 }
390 
testValuesClear__InverseMapTests()391 public void testValuesClear__InverseMapTests() throws Exception {
392   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
393   testCase.testValuesClear();
394 }
395 
testValuesIteratorRemove__InverseMapTests()396 public void testValuesIteratorRemove__InverseMapTests() throws Exception {
397   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
398   testCase.testValuesIteratorRemove();
399 }
400 
testValuesRemove__InverseMapTests()401 public void testValuesRemove__InverseMapTests() throws Exception {
402   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
403   testCase.testValuesRemove();
404 }
405 
testValuesRemoveAll__InverseMapTests()406 public void testValuesRemoveAll__InverseMapTests() throws Exception {
407   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
408   testCase.testValuesRemoveAll();
409 }
410 
testValuesRemoveAllNullFromEmpty__InverseMapTests()411 public void testValuesRemoveAllNullFromEmpty__InverseMapTests() throws Exception {
412   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
413   testCase.testValuesRemoveAllNullFromEmpty();
414 }
415 
testValuesRemoveMissing__InverseMapTests()416 public void testValuesRemoveMissing__InverseMapTests() throws Exception {
417   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
418   testCase.testValuesRemoveMissing();
419 }
420 
testValuesRetainAll__InverseMapTests()421 public void testValuesRetainAll__InverseMapTests() throws Exception {
422   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
423   testCase.testValuesRetainAll();
424 }
425 
testValuesRetainAllNullFromEmpty__InverseMapTests()426 public void testValuesRetainAllNullFromEmpty__InverseMapTests() throws Exception {
427   com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests();
428   testCase.testValuesRetainAllNullFromEmpty();
429 }
430 
testClear__MapTests()431 public void testClear__MapTests() throws Exception {
432   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
433   testCase.testClear();
434 }
435 
testContainsKey__MapTests()436 public void testContainsKey__MapTests() throws Exception {
437   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
438   testCase.testContainsKey();
439 }
440 
testContainsValue__MapTests()441 public void testContainsValue__MapTests() throws Exception {
442   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
443   testCase.testContainsValue();
444 }
445 
testEntrySet__MapTests()446 public void testEntrySet__MapTests() throws Exception {
447   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
448   testCase.testEntrySet();
449 }
450 
testEntrySetAddAndAddAll__MapTests()451 public void testEntrySetAddAndAddAll__MapTests() throws Exception {
452   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
453   testCase.testEntrySetAddAndAddAll();
454 }
455 
testEntrySetClear__MapTests()456 public void testEntrySetClear__MapTests() throws Exception {
457   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
458   testCase.testEntrySetClear();
459 }
460 
testEntrySetContainsEntryIncompatibleKey__MapTests()461 public void testEntrySetContainsEntryIncompatibleKey__MapTests() throws Exception {
462   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
463   testCase.testEntrySetContainsEntryIncompatibleKey();
464 }
465 
testEntrySetContainsEntryNullKeyMissing__MapTests()466 public void testEntrySetContainsEntryNullKeyMissing__MapTests() throws Exception {
467   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
468   testCase.testEntrySetContainsEntryNullKeyMissing();
469 }
470 
testEntrySetContainsEntryNullKeyPresent__MapTests()471 public void testEntrySetContainsEntryNullKeyPresent__MapTests() throws Exception {
472   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
473   testCase.testEntrySetContainsEntryNullKeyPresent();
474 }
475 
testEntrySetForEmptyMap__MapTests()476 public void testEntrySetForEmptyMap__MapTests() throws Exception {
477   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
478   testCase.testEntrySetForEmptyMap();
479 }
480 
testEntrySetIteratorRemove__MapTests()481 public void testEntrySetIteratorRemove__MapTests() throws Exception {
482   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
483   testCase.testEntrySetIteratorRemove();
484 }
485 
testEntrySetRemove__MapTests()486 public void testEntrySetRemove__MapTests() throws Exception {
487   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
488   testCase.testEntrySetRemove();
489 }
490 
testEntrySetRemoveAll__MapTests()491 public void testEntrySetRemoveAll__MapTests() throws Exception {
492   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
493   testCase.testEntrySetRemoveAll();
494 }
495 
testEntrySetRemoveAllNullFromEmpty__MapTests()496 public void testEntrySetRemoveAllNullFromEmpty__MapTests() throws Exception {
497   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
498   testCase.testEntrySetRemoveAllNullFromEmpty();
499 }
500 
testEntrySetRemoveDifferentValue__MapTests()501 public void testEntrySetRemoveDifferentValue__MapTests() throws Exception {
502   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
503   testCase.testEntrySetRemoveDifferentValue();
504 }
505 
testEntrySetRemoveMissingKey__MapTests()506 public void testEntrySetRemoveMissingKey__MapTests() throws Exception {
507   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
508   testCase.testEntrySetRemoveMissingKey();
509 }
510 
testEntrySetRemoveNullKeyMissing__MapTests()511 public void testEntrySetRemoveNullKeyMissing__MapTests() throws Exception {
512   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
513   testCase.testEntrySetRemoveNullKeyMissing();
514 }
515 
testEntrySetRemoveNullKeyPresent__MapTests()516 public void testEntrySetRemoveNullKeyPresent__MapTests() throws Exception {
517   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
518   testCase.testEntrySetRemoveNullKeyPresent();
519 }
520 
testEntrySetRetainAll__MapTests()521 public void testEntrySetRetainAll__MapTests() throws Exception {
522   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
523   testCase.testEntrySetRetainAll();
524 }
525 
testEntrySetRetainAllNullFromEmpty__MapTests()526 public void testEntrySetRetainAllNullFromEmpty__MapTests() throws Exception {
527   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
528   testCase.testEntrySetRetainAllNullFromEmpty();
529 }
530 
testEntrySetSetValue__MapTests()531 public void testEntrySetSetValue__MapTests() throws Exception {
532   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
533   testCase.testEntrySetSetValue();
534 }
535 
testEntrySetSetValueSameValue__MapTests()536 public void testEntrySetSetValueSameValue__MapTests() throws Exception {
537   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
538   testCase.testEntrySetSetValueSameValue();
539 }
540 
testEqualsForEmptyMap__MapTests()541 public void testEqualsForEmptyMap__MapTests() throws Exception {
542   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
543   testCase.testEqualsForEmptyMap();
544 }
545 
testEqualsForEqualMap__MapTests()546 public void testEqualsForEqualMap__MapTests() throws Exception {
547   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
548   testCase.testEqualsForEqualMap();
549 }
550 
testEqualsForLargerMap__MapTests()551 public void testEqualsForLargerMap__MapTests() throws Exception {
552   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
553   testCase.testEqualsForLargerMap();
554 }
555 
testEqualsForSmallerMap__MapTests()556 public void testEqualsForSmallerMap__MapTests() throws Exception {
557   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
558   testCase.testEqualsForSmallerMap();
559 }
560 
testGet__MapTests()561 public void testGet__MapTests() throws Exception {
562   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
563   testCase.testGet();
564 }
565 
testGetForEmptyMap__MapTests()566 public void testGetForEmptyMap__MapTests() throws Exception {
567   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
568   testCase.testGetForEmptyMap();
569 }
570 
testGetNull__MapTests()571 public void testGetNull__MapTests() throws Exception {
572   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
573   testCase.testGetNull();
574 }
575 
testHashCode__MapTests()576 public void testHashCode__MapTests() throws Exception {
577   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
578   testCase.testHashCode();
579 }
580 
testHashCodeForEmptyMap__MapTests()581 public void testHashCodeForEmptyMap__MapTests() throws Exception {
582   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
583   testCase.testHashCodeForEmptyMap();
584 }
585 
testKeySetClear__MapTests()586 public void testKeySetClear__MapTests() throws Exception {
587   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
588   testCase.testKeySetClear();
589 }
590 
testKeySetRemove__MapTests()591 public void testKeySetRemove__MapTests() throws Exception {
592   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
593   testCase.testKeySetRemove();
594 }
595 
testKeySetRemoveAll__MapTests()596 public void testKeySetRemoveAll__MapTests() throws Exception {
597   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
598   testCase.testKeySetRemoveAll();
599 }
600 
testKeySetRemoveAllNullFromEmpty__MapTests()601 public void testKeySetRemoveAllNullFromEmpty__MapTests() throws Exception {
602   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
603   testCase.testKeySetRemoveAllNullFromEmpty();
604 }
605 
testKeySetRetainAll__MapTests()606 public void testKeySetRetainAll__MapTests() throws Exception {
607   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
608   testCase.testKeySetRetainAll();
609 }
610 
testKeySetRetainAllNullFromEmpty__MapTests()611 public void testKeySetRetainAllNullFromEmpty__MapTests() throws Exception {
612   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
613   testCase.testKeySetRetainAllNullFromEmpty();
614 }
615 
testPutAllExistingKey__MapTests()616 public void testPutAllExistingKey__MapTests() throws Exception {
617   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
618   testCase.testPutAllExistingKey();
619 }
620 
testPutAllNewKey__MapTests()621 public void testPutAllNewKey__MapTests() throws Exception {
622   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
623   testCase.testPutAllNewKey();
624 }
625 
testPutExistingKey__MapTests()626 public void testPutExistingKey__MapTests() throws Exception {
627   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
628   testCase.testPutExistingKey();
629 }
630 
testPutNewKey__MapTests()631 public void testPutNewKey__MapTests() throws Exception {
632   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
633   testCase.testPutNewKey();
634 }
635 
testPutNullKey__MapTests()636 public void testPutNullKey__MapTests() throws Exception {
637   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
638   testCase.testPutNullKey();
639 }
640 
testPutNullValue__MapTests()641 public void testPutNullValue__MapTests() throws Exception {
642   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
643   testCase.testPutNullValue();
644 }
645 
testPutNullValueForExistingKey__MapTests()646 public void testPutNullValueForExistingKey__MapTests() throws Exception {
647   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
648   testCase.testPutNullValueForExistingKey();
649 }
650 
testRemove__MapTests()651 public void testRemove__MapTests() throws Exception {
652   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
653   testCase.testRemove();
654 }
655 
testRemoveMissingKey__MapTests()656 public void testRemoveMissingKey__MapTests() throws Exception {
657   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
658   testCase.testRemoveMissingKey();
659 }
660 
testSize__MapTests()661 public void testSize__MapTests() throws Exception {
662   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
663   testCase.testSize();
664 }
665 
testValues__MapTests()666 public void testValues__MapTests() throws Exception {
667   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
668   testCase.testValues();
669 }
670 
testValuesClear__MapTests()671 public void testValuesClear__MapTests() throws Exception {
672   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
673   testCase.testValuesClear();
674 }
675 
testValuesIteratorRemove__MapTests()676 public void testValuesIteratorRemove__MapTests() throws Exception {
677   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
678   testCase.testValuesIteratorRemove();
679 }
680 
testValuesRemove__MapTests()681 public void testValuesRemove__MapTests() throws Exception {
682   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
683   testCase.testValuesRemove();
684 }
685 
testValuesRemoveAll__MapTests()686 public void testValuesRemoveAll__MapTests() throws Exception {
687   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
688   testCase.testValuesRemoveAll();
689 }
690 
testValuesRemoveAllNullFromEmpty__MapTests()691 public void testValuesRemoveAllNullFromEmpty__MapTests() throws Exception {
692   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
693   testCase.testValuesRemoveAllNullFromEmpty();
694 }
695 
testValuesRemoveMissing__MapTests()696 public void testValuesRemoveMissing__MapTests() throws Exception {
697   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
698   testCase.testValuesRemoveMissing();
699 }
700 
testValuesRetainAll__MapTests()701 public void testValuesRetainAll__MapTests() throws Exception {
702   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
703   testCase.testValuesRetainAll();
704 }
705 
testValuesRetainAllNullFromEmpty__MapTests()706 public void testValuesRetainAllNullFromEmpty__MapTests() throws Exception {
707   com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests();
708   testCase.testValuesRetainAllNullFromEmpty();
709 }
710 }
711