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 IterablesTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
18@Override public String getModuleName() {
19  return "com.google.common.collect.testModule";
20}
21public void testAddAllToList() throws Exception {
22  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
23  testCase.testAddAllToList();
24}
25
26public void testAll() throws Exception {
27  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
28  testCase.testAll();
29}
30
31public void testAny() throws Exception {
32  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
33  testCase.testAny();
34}
35
36public void testConcatIterable() throws Exception {
37  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
38  testCase.testConcatIterable();
39}
40
41public void testConcatNullPointerException() throws Exception {
42  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
43  testCase.testConcatNullPointerException();
44}
45
46public void testConcatPeformingFiniteCycle() throws Exception {
47  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
48  testCase.testConcatPeformingFiniteCycle();
49}
50
51public void testConcatVarargs() throws Exception {
52  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
53  testCase.testConcatVarargs();
54}
55
56public void testConsumingIterable() throws Exception {
57  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
58  testCase.testConsumingIterable();
59}
60
61public void testConsumingIterable_noIteratorCall() throws Exception {
62  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
63  testCase.testConsumingIterable_noIteratorCall();
64}
65
66public void testConsumingIterable_queue_iterator() throws Exception {
67  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
68  testCase.testConsumingIterable_queue_iterator();
69}
70
71public void testConsumingIterable_queue_removesFromQueue() throws Exception {
72  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
73  testCase.testConsumingIterable_queue_removesFromQueue();
74}
75
76public void testCycle() throws Exception {
77  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
78  testCase.testCycle();
79}
80
81public void testElementsEqual() throws Exception {
82  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
83  testCase.testElementsEqual();
84}
85
86public void testFind() throws Exception {
87  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
88  testCase.testFind();
89}
90
91public void testFind_withDefault() throws Exception {
92  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
93  testCase.testFind_withDefault();
94}
95
96public void testFrequency_list() throws Exception {
97  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
98  testCase.testFrequency_list();
99}
100
101public void testFrequency_multiset() throws Exception {
102  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
103  testCase.testFrequency_multiset();
104}
105
106public void testFrequency_set() throws Exception {
107  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
108  testCase.testFrequency_set();
109}
110
111public void testGetFirst_withDefault_empty() throws Exception {
112  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
113  testCase.testGetFirst_withDefault_empty();
114}
115
116public void testGetFirst_withDefault_empty_null() throws Exception {
117  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
118  testCase.testGetFirst_withDefault_empty_null();
119}
120
121public void testGetFirst_withDefault_multiple() throws Exception {
122  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
123  testCase.testGetFirst_withDefault_multiple();
124}
125
126public void testGetFirst_withDefault_singleton() throws Exception {
127  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
128  testCase.testGetFirst_withDefault_singleton();
129}
130
131public void testGetLast_emptyIterable() throws Exception {
132  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
133  testCase.testGetLast_emptyIterable();
134}
135
136public void testGetLast_emptyList() throws Exception {
137  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
138  testCase.testGetLast_emptyList();
139}
140
141public void testGetLast_emptySortedSet() throws Exception {
142  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
143  testCase.testGetLast_emptySortedSet();
144}
145
146public void testGetLast_iterable() throws Exception {
147  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
148  testCase.testGetLast_iterable();
149}
150
151public void testGetLast_list() throws Exception {
152  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
153  testCase.testGetLast_list();
154}
155
156public void testGetLast_sortedSet() throws Exception {
157  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
158  testCase.testGetLast_sortedSet();
159}
160
161public void testGetLast_withDefault_empty() throws Exception {
162  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
163  testCase.testGetLast_withDefault_empty();
164}
165
166public void testGetLast_withDefault_empty_null() throws Exception {
167  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
168  testCase.testGetLast_withDefault_empty_null();
169}
170
171public void testGetLast_withDefault_multiple() throws Exception {
172  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
173  testCase.testGetLast_withDefault_multiple();
174}
175
176public void testGetLast_withDefault_not_empty_list() throws Exception {
177  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
178  testCase.testGetLast_withDefault_not_empty_list();
179}
180
181public void testGetLast_withDefault_singleton() throws Exception {
182  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
183  testCase.testGetLast_withDefault_singleton();
184}
185
186public void testGetOnlyElement_noDefault_empty() throws Exception {
187  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
188  testCase.testGetOnlyElement_noDefault_empty();
189}
190
191public void testGetOnlyElement_noDefault_multiple() throws Exception {
192  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
193  testCase.testGetOnlyElement_noDefault_multiple();
194}
195
196public void testGetOnlyElement_noDefault_valid() throws Exception {
197  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
198  testCase.testGetOnlyElement_noDefault_valid();
199}
200
201public void testGetOnlyElement_withDefault_empty() throws Exception {
202  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
203  testCase.testGetOnlyElement_withDefault_empty();
204}
205
206public void testGetOnlyElement_withDefault_empty_null() throws Exception {
207  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
208  testCase.testGetOnlyElement_withDefault_empty_null();
209}
210
211public void testGetOnlyElement_withDefault_multiple() throws Exception {
212  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
213  testCase.testGetOnlyElement_withDefault_multiple();
214}
215
216public void testGetOnlyElement_withDefault_singleton() throws Exception {
217  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
218  testCase.testGetOnlyElement_withDefault_singleton();
219}
220
221public void testGet_emptyIterable() throws Exception {
222  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
223  testCase.testGet_emptyIterable();
224}
225
226public void testGet_emptyList() throws Exception {
227  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
228  testCase.testGet_emptyList();
229}
230
231public void testGet_emptySortedSet() throws Exception {
232  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
233  testCase.testGet_emptySortedSet();
234}
235
236public void testGet_iterable() throws Exception {
237  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
238  testCase.testGet_iterable();
239}
240
241public void testGet_list() throws Exception {
242  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
243  testCase.testGet_list();
244}
245
246public void testGet_sortedSet() throws Exception {
247  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
248  testCase.testGet_sortedSet();
249}
250
251public void testGet_withDefault_doesntIterate() throws Exception {
252  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
253  testCase.testGet_withDefault_doesntIterate();
254}
255
256public void testGet_withDefault_iterable() throws Exception {
257  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
258  testCase.testGet_withDefault_iterable();
259}
260
261public void testGet_withDefault_last() throws Exception {
262  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
263  testCase.testGet_withDefault_last();
264}
265
266public void testGet_withDefault_lastPlusOne() throws Exception {
267  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
268  testCase.testGet_withDefault_lastPlusOne();
269}
270
271public void testGet_withDefault_negativePosition() throws Exception {
272  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
273  testCase.testGet_withDefault_negativePosition();
274}
275
276public void testGet_withDefault_simple() throws Exception {
277  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
278  testCase.testGet_withDefault_simple();
279}
280
281public void testIndexOf_empty() throws Exception {
282  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
283  testCase.testIndexOf_empty();
284}
285
286public void testIndexOf_genericPredicate() throws Exception {
287  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
288  testCase.testIndexOf_genericPredicate();
289}
290
291public void testIndexOf_genericPredicate2() throws Exception {
292  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
293  testCase.testIndexOf_genericPredicate2();
294}
295
296public void testIndexOf_oneElement() throws Exception {
297  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
298  testCase.testIndexOf_oneElement();
299}
300
301public void testIndexOf_twoElements() throws Exception {
302  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
303  testCase.testIndexOf_twoElements();
304}
305
306public void testIndexOf_withDuplicates() throws Exception {
307  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
308  testCase.testIndexOf_withDuplicates();
309}
310
311public void testIsEmpty() throws Exception {
312  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
313  testCase.testIsEmpty();
314}
315
316public void testIterableWithToString() throws Exception {
317  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
318  testCase.testIterableWithToString();
319}
320
321public void testIterableWithToStringNull() throws Exception {
322  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
323  testCase.testIterableWithToStringNull();
324}
325
326public void testLimit() throws Exception {
327  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
328  testCase.testLimit();
329}
330
331public void testLimit_illegalArgument() throws Exception {
332  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
333  testCase.testLimit_illegalArgument();
334}
335
336public void testMergeSorted_empty() throws Exception {
337  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
338  testCase.testMergeSorted_empty();
339}
340
341public void testMergeSorted_pyramid() throws Exception {
342  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
343  testCase.testMergeSorted_pyramid();
344}
345
346public void testMergeSorted_single() throws Exception {
347  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
348  testCase.testMergeSorted_single();
349}
350
351public void testMergeSorted_single_empty() throws Exception {
352  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
353  testCase.testMergeSorted_single_empty();
354}
355
356public void testMergeSorted_skipping_pyramid() throws Exception {
357  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
358  testCase.testMergeSorted_skipping_pyramid();
359}
360
361public void testNullFriendlyTransform() throws Exception {
362  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
363  testCase.testNullFriendlyTransform();
364}
365
366public void testPaddedPartitionNonRandomAccessInput() throws Exception {
367  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
368  testCase.testPaddedPartitionNonRandomAccessInput();
369}
370
371public void testPaddedPartitionRandomAccessInput() throws Exception {
372  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
373  testCase.testPaddedPartitionRandomAccessInput();
374}
375
376public void testPaddedPartition_basic() throws Exception {
377  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
378  testCase.testPaddedPartition_basic();
379}
380
381public void testPartition_badSize() throws Exception {
382  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
383  testCase.testPartition_badSize();
384}
385
386public void testPartition_empty() throws Exception {
387  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
388  testCase.testPartition_empty();
389}
390
391public void testPartition_singleton1() throws Exception {
392  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
393  testCase.testPartition_singleton1();
394}
395
396public void testPartition_view() throws Exception {
397  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
398  testCase.testPartition_view();
399}
400
401public void testPoorlyBehavedTransform() throws Exception {
402  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
403  testCase.testPoorlyBehavedTransform();
404}
405
406public void testRemoveAll_collection() throws Exception {
407  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
408  testCase.testRemoveAll_collection();
409}
410
411public void testRemoveAll_iterable() throws Exception {
412  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
413  testCase.testRemoveAll_iterable();
414}
415
416public void testRemoveIf_noRandomAccess() throws Exception {
417  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
418  testCase.testRemoveIf_noRandomAccess();
419}
420
421public void testRemoveIf_randomAccess() throws Exception {
422  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
423  testCase.testRemoveIf_randomAccess();
424}
425
426public void testRemoveIf_transformedList() throws Exception {
427  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
428  testCase.testRemoveIf_transformedList();
429}
430
431public void testRetainAll_collection() throws Exception {
432  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
433  testCase.testRetainAll_collection();
434}
435
436public void testRetainAll_iterable() throws Exception {
437  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
438  testCase.testRetainAll_iterable();
439}
440
441public void testSize0() throws Exception {
442  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
443  testCase.testSize0();
444}
445
446public void testSize1Collection() throws Exception {
447  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
448  testCase.testSize1Collection();
449}
450
451public void testSize2NonCollection() throws Exception {
452  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
453  testCase.testSize2NonCollection();
454}
455
456public void testSize_collection_doesntIterate() throws Exception {
457  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
458  testCase.testSize_collection_doesntIterate();
459}
460
461public void testSkip_allOfImmutableList_modifiable() throws Exception {
462  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
463  testCase.testSkip_allOfImmutableList_modifiable();
464}
465
466public void testSkip_allOfMutableList_modifiable() throws Exception {
467  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
468  testCase.testSkip_allOfMutableList_modifiable();
469}
470
471public void testSkip_illegalArgument() throws Exception {
472  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
473  testCase.testSkip_illegalArgument();
474}
475
476public void testSkip_nonStructurallyModifiedList() throws Exception {
477  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
478  testCase.testSkip_nonStructurallyModifiedList();
479}
480
481public void testSkip_pastEnd() throws Exception {
482  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
483  testCase.testSkip_pastEnd();
484}
485
486public void testSkip_pastEndList() throws Exception {
487  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
488  testCase.testSkip_pastEndList();
489}
490
491public void testSkip_removal() throws Exception {
492  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
493  testCase.testSkip_removal();
494}
495
496public void testSkip_simple() throws Exception {
497  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
498  testCase.testSkip_simple();
499}
500
501public void testSkip_simpleList() throws Exception {
502  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
503  testCase.testSkip_simpleList();
504}
505
506public void testSkip_skipNone() throws Exception {
507  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
508  testCase.testSkip_skipNone();
509}
510
511public void testSkip_skipNoneList() throws Exception {
512  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
513  testCase.testSkip_skipNoneList();
514}
515
516public void testSkip_structurallyModifiedSkipAll() throws Exception {
517  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
518  testCase.testSkip_structurallyModifiedSkipAll();
519}
520
521public void testSkip_structurallyModifiedSkipAllList() throws Exception {
522  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
523  testCase.testSkip_structurallyModifiedSkipAllList();
524}
525
526public void testSkip_structurallyModifiedSkipSome() throws Exception {
527  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
528  testCase.testSkip_structurallyModifiedSkipSome();
529}
530
531public void testSkip_structurallyModifiedSkipSomeList() throws Exception {
532  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
533  testCase.testSkip_structurallyModifiedSkipSomeList();
534}
535
536public void testToString() throws Exception {
537  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
538  testCase.testToString();
539}
540
541public void testTransform() throws Exception {
542  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
543  testCase.testTransform();
544}
545
546public void testTryFind() throws Exception {
547  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
548  testCase.testTryFind();
549}
550
551public void testUnmodifiableIterable() throws Exception {
552  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
553  testCase.testUnmodifiableIterable();
554}
555
556public void testUnmodifiableIterableShortCircuit() throws Exception {
557  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
558  testCase.testUnmodifiableIterableShortCircuit();
559}
560
561public void test_contains_nonnull_iterable_no() throws Exception {
562  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
563  testCase.test_contains_nonnull_iterable_no();
564}
565
566public void test_contains_nonnull_iterable_yes() throws Exception {
567  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
568  testCase.test_contains_nonnull_iterable_yes();
569}
570
571public void test_contains_nonnull_set_no() throws Exception {
572  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
573  testCase.test_contains_nonnull_set_no();
574}
575
576public void test_contains_nonnull_set_yes() throws Exception {
577  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
578  testCase.test_contains_nonnull_set_yes();
579}
580
581public void test_contains_null_iterable_no() throws Exception {
582  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
583  testCase.test_contains_null_iterable_no();
584}
585
586public void test_contains_null_iterable_yes() throws Exception {
587  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
588  testCase.test_contains_null_iterable_yes();
589}
590
591public void test_contains_null_set_no() throws Exception {
592  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
593  testCase.test_contains_null_set_no();
594}
595
596public void test_contains_null_set_yes() throws Exception {
597  com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
598  testCase.test_contains_null_set_yes();
599}
600}
601