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 IterablesTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
getModuleName()18 @Override public String getModuleName() {
19   return "com.google.common.collect.testModule";
20 }
testAddAllToList()21 public void testAddAllToList() throws Exception {
22   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
23   testCase.testAddAllToList();
24 }
25 
testAll()26 public void testAll() throws Exception {
27   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
28   testCase.testAll();
29 }
30 
testAny()31 public void testAny() throws Exception {
32   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
33   testCase.testAny();
34 }
35 
testConcatIterable()36 public void testConcatIterable() throws Exception {
37   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
38   testCase.testConcatIterable();
39 }
40 
testConcatNullPointerException()41 public void testConcatNullPointerException() throws Exception {
42   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
43   testCase.testConcatNullPointerException();
44 }
45 
testConcatPeformingFiniteCycle()46 public void testConcatPeformingFiniteCycle() throws Exception {
47   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
48   testCase.testConcatPeformingFiniteCycle();
49 }
50 
testConcatVarargs()51 public void testConcatVarargs() throws Exception {
52   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
53   testCase.testConcatVarargs();
54 }
55 
testConsumingIterable()56 public void testConsumingIterable() throws Exception {
57   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
58   testCase.testConsumingIterable();
59 }
60 
testConsumingIterable_noIteratorCall()61 public void testConsumingIterable_noIteratorCall() throws Exception {
62   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
63   testCase.testConsumingIterable_noIteratorCall();
64 }
65 
testConsumingIterable_queue_iterator()66 public 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 
testConsumingIterable_queue_removesFromQueue()71 public 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 
testCycle()76 public void testCycle() throws Exception {
77   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
78   testCase.testCycle();
79 }
80 
testElementsEqual()81 public void testElementsEqual() throws Exception {
82   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
83   testCase.testElementsEqual();
84 }
85 
testFind()86 public void testFind() throws Exception {
87   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
88   testCase.testFind();
89 }
90 
testFind_withDefault()91 public void testFind_withDefault() throws Exception {
92   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
93   testCase.testFind_withDefault();
94 }
95 
testFrequency_list()96 public void testFrequency_list() throws Exception {
97   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
98   testCase.testFrequency_list();
99 }
100 
testFrequency_multiset()101 public void testFrequency_multiset() throws Exception {
102   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
103   testCase.testFrequency_multiset();
104 }
105 
testFrequency_set()106 public void testFrequency_set() throws Exception {
107   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
108   testCase.testFrequency_set();
109 }
110 
testGetFirst_withDefault_empty()111 public 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 
testGetFirst_withDefault_empty_null()116 public 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 
testGetFirst_withDefault_multiple()121 public 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 
testGetFirst_withDefault_singleton()126 public 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 
testGetLast_emptyIterable()131 public void testGetLast_emptyIterable() throws Exception {
132   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
133   testCase.testGetLast_emptyIterable();
134 }
135 
testGetLast_emptyList()136 public void testGetLast_emptyList() throws Exception {
137   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
138   testCase.testGetLast_emptyList();
139 }
140 
testGetLast_emptySortedSet()141 public void testGetLast_emptySortedSet() throws Exception {
142   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
143   testCase.testGetLast_emptySortedSet();
144 }
145 
testGetLast_iterable()146 public void testGetLast_iterable() throws Exception {
147   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
148   testCase.testGetLast_iterable();
149 }
150 
testGetLast_list()151 public void testGetLast_list() throws Exception {
152   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
153   testCase.testGetLast_list();
154 }
155 
testGetLast_sortedSet()156 public void testGetLast_sortedSet() throws Exception {
157   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
158   testCase.testGetLast_sortedSet();
159 }
160 
testGetLast_withDefault_empty()161 public 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 
testGetLast_withDefault_empty_null()166 public 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 
testGetLast_withDefault_multiple()171 public 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 
testGetLast_withDefault_not_empty_list()176 public 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 
testGetLast_withDefault_singleton()181 public 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 
testGetOnlyElement_noDefault_empty()186 public 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 
testGetOnlyElement_noDefault_multiple()191 public 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 
testGetOnlyElement_noDefault_valid()196 public 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 
testGetOnlyElement_withDefault_empty()201 public 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 
testGetOnlyElement_withDefault_empty_null()206 public 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 
testGetOnlyElement_withDefault_multiple()211 public 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 
testGetOnlyElement_withDefault_singleton()216 public 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 
testGet_emptyIterable()221 public void testGet_emptyIterable() throws Exception {
222   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
223   testCase.testGet_emptyIterable();
224 }
225 
testGet_emptyList()226 public void testGet_emptyList() throws Exception {
227   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
228   testCase.testGet_emptyList();
229 }
230 
testGet_emptySortedSet()231 public void testGet_emptySortedSet() throws Exception {
232   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
233   testCase.testGet_emptySortedSet();
234 }
235 
testGet_iterable()236 public void testGet_iterable() throws Exception {
237   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
238   testCase.testGet_iterable();
239 }
240 
testGet_list()241 public void testGet_list() throws Exception {
242   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
243   testCase.testGet_list();
244 }
245 
testGet_sortedSet()246 public void testGet_sortedSet() throws Exception {
247   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
248   testCase.testGet_sortedSet();
249 }
250 
testGet_withDefault_doesntIterate()251 public 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 
testGet_withDefault_iterable()256 public 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 
testGet_withDefault_last()261 public 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 
testGet_withDefault_lastPlusOne()266 public 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 
testGet_withDefault_negativePosition()271 public 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 
testGet_withDefault_simple()276 public 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 
testIndexOf_empty()281 public void testIndexOf_empty() throws Exception {
282   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
283   testCase.testIndexOf_empty();
284 }
285 
testIndexOf_genericPredicate()286 public void testIndexOf_genericPredicate() throws Exception {
287   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
288   testCase.testIndexOf_genericPredicate();
289 }
290 
testIndexOf_genericPredicate2()291 public void testIndexOf_genericPredicate2() throws Exception {
292   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
293   testCase.testIndexOf_genericPredicate2();
294 }
295 
testIndexOf_oneElement()296 public void testIndexOf_oneElement() throws Exception {
297   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
298   testCase.testIndexOf_oneElement();
299 }
300 
testIndexOf_twoElements()301 public void testIndexOf_twoElements() throws Exception {
302   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
303   testCase.testIndexOf_twoElements();
304 }
305 
testIndexOf_withDuplicates()306 public void testIndexOf_withDuplicates() throws Exception {
307   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
308   testCase.testIndexOf_withDuplicates();
309 }
310 
testIsEmpty()311 public void testIsEmpty() throws Exception {
312   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
313   testCase.testIsEmpty();
314 }
315 
testIterableWithToString()316 public void testIterableWithToString() throws Exception {
317   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
318   testCase.testIterableWithToString();
319 }
320 
testIterableWithToStringNull()321 public void testIterableWithToStringNull() throws Exception {
322   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
323   testCase.testIterableWithToStringNull();
324 }
325 
testLimit()326 public void testLimit() throws Exception {
327   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
328   testCase.testLimit();
329 }
330 
testLimit_illegalArgument()331 public void testLimit_illegalArgument() throws Exception {
332   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
333   testCase.testLimit_illegalArgument();
334 }
335 
testMergeSorted_empty()336 public void testMergeSorted_empty() throws Exception {
337   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
338   testCase.testMergeSorted_empty();
339 }
340 
testMergeSorted_pyramid()341 public void testMergeSorted_pyramid() throws Exception {
342   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
343   testCase.testMergeSorted_pyramid();
344 }
345 
testMergeSorted_single()346 public void testMergeSorted_single() throws Exception {
347   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
348   testCase.testMergeSorted_single();
349 }
350 
testMergeSorted_single_empty()351 public 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 
testMergeSorted_skipping_pyramid()356 public 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 
testNullFriendlyTransform()361 public void testNullFriendlyTransform() throws Exception {
362   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
363   testCase.testNullFriendlyTransform();
364 }
365 
testPaddedPartitionNonRandomAccessInput()366 public void testPaddedPartitionNonRandomAccessInput() throws Exception {
367   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
368   testCase.testPaddedPartitionNonRandomAccessInput();
369 }
370 
testPaddedPartitionRandomAccessInput()371 public void testPaddedPartitionRandomAccessInput() throws Exception {
372   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
373   testCase.testPaddedPartitionRandomAccessInput();
374 }
375 
testPaddedPartition_basic()376 public void testPaddedPartition_basic() throws Exception {
377   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
378   testCase.testPaddedPartition_basic();
379 }
380 
testPartition_badSize()381 public void testPartition_badSize() throws Exception {
382   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
383   testCase.testPartition_badSize();
384 }
385 
testPartition_empty()386 public void testPartition_empty() throws Exception {
387   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
388   testCase.testPartition_empty();
389 }
390 
testPartition_singleton1()391 public void testPartition_singleton1() throws Exception {
392   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
393   testCase.testPartition_singleton1();
394 }
395 
testPartition_view()396 public void testPartition_view() throws Exception {
397   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
398   testCase.testPartition_view();
399 }
400 
testPoorlyBehavedTransform()401 public void testPoorlyBehavedTransform() throws Exception {
402   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
403   testCase.testPoorlyBehavedTransform();
404 }
405 
testRemoveAll_collection()406 public void testRemoveAll_collection() throws Exception {
407   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
408   testCase.testRemoveAll_collection();
409 }
410 
testRemoveAll_iterable()411 public void testRemoveAll_iterable() throws Exception {
412   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
413   testCase.testRemoveAll_iterable();
414 }
415 
testRemoveIf_noRandomAccess()416 public void testRemoveIf_noRandomAccess() throws Exception {
417   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
418   testCase.testRemoveIf_noRandomAccess();
419 }
420 
testRemoveIf_randomAccess()421 public void testRemoveIf_randomAccess() throws Exception {
422   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
423   testCase.testRemoveIf_randomAccess();
424 }
425 
testRemoveIf_transformedList()426 public void testRemoveIf_transformedList() throws Exception {
427   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
428   testCase.testRemoveIf_transformedList();
429 }
430 
testRetainAll_collection()431 public void testRetainAll_collection() throws Exception {
432   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
433   testCase.testRetainAll_collection();
434 }
435 
testRetainAll_iterable()436 public void testRetainAll_iterable() throws Exception {
437   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
438   testCase.testRetainAll_iterable();
439 }
440 
testSize0()441 public void testSize0() throws Exception {
442   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
443   testCase.testSize0();
444 }
445 
testSize1Collection()446 public void testSize1Collection() throws Exception {
447   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
448   testCase.testSize1Collection();
449 }
450 
testSize2NonCollection()451 public void testSize2NonCollection() throws Exception {
452   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
453   testCase.testSize2NonCollection();
454 }
455 
testSize_collection_doesntIterate()456 public 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 
testSkip_allOfImmutableList_modifiable()461 public 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 
testSkip_allOfMutableList_modifiable()466 public 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 
testSkip_illegalArgument()471 public void testSkip_illegalArgument() throws Exception {
472   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
473   testCase.testSkip_illegalArgument();
474 }
475 
testSkip_nonStructurallyModifiedList()476 public void testSkip_nonStructurallyModifiedList() throws Exception {
477   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
478   testCase.testSkip_nonStructurallyModifiedList();
479 }
480 
testSkip_pastEnd()481 public void testSkip_pastEnd() throws Exception {
482   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
483   testCase.testSkip_pastEnd();
484 }
485 
testSkip_pastEndList()486 public void testSkip_pastEndList() throws Exception {
487   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
488   testCase.testSkip_pastEndList();
489 }
490 
testSkip_removal()491 public void testSkip_removal() throws Exception {
492   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
493   testCase.testSkip_removal();
494 }
495 
testSkip_simple()496 public void testSkip_simple() throws Exception {
497   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
498   testCase.testSkip_simple();
499 }
500 
testSkip_simpleList()501 public void testSkip_simpleList() throws Exception {
502   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
503   testCase.testSkip_simpleList();
504 }
505 
testSkip_skipNone()506 public void testSkip_skipNone() throws Exception {
507   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
508   testCase.testSkip_skipNone();
509 }
510 
testSkip_skipNoneList()511 public void testSkip_skipNoneList() throws Exception {
512   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
513   testCase.testSkip_skipNoneList();
514 }
515 
testSkip_structurallyModifiedSkipAll()516 public void testSkip_structurallyModifiedSkipAll() throws Exception {
517   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
518   testCase.testSkip_structurallyModifiedSkipAll();
519 }
520 
testSkip_structurallyModifiedSkipAllList()521 public void testSkip_structurallyModifiedSkipAllList() throws Exception {
522   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
523   testCase.testSkip_structurallyModifiedSkipAllList();
524 }
525 
testSkip_structurallyModifiedSkipSome()526 public void testSkip_structurallyModifiedSkipSome() throws Exception {
527   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
528   testCase.testSkip_structurallyModifiedSkipSome();
529 }
530 
testSkip_structurallyModifiedSkipSomeList()531 public void testSkip_structurallyModifiedSkipSomeList() throws Exception {
532   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
533   testCase.testSkip_structurallyModifiedSkipSomeList();
534 }
535 
testToString()536 public void testToString() throws Exception {
537   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
538   testCase.testToString();
539 }
540 
testTransform()541 public void testTransform() throws Exception {
542   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
543   testCase.testTransform();
544 }
545 
testTryFind()546 public void testTryFind() throws Exception {
547   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
548   testCase.testTryFind();
549 }
550 
testUnmodifiableIterable()551 public void testUnmodifiableIterable() throws Exception {
552   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
553   testCase.testUnmodifiableIterable();
554 }
555 
testUnmodifiableIterableShortCircuit()556 public void testUnmodifiableIterableShortCircuit() throws Exception {
557   com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest();
558   testCase.testUnmodifiableIterableShortCircuit();
559 }
560 
test_contains_nonnull_iterable_no()561 public 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 
test_contains_nonnull_iterable_yes()566 public 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 
test_contains_nonnull_set_no()571 public 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 
test_contains_nonnull_set_yes()576 public 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 
test_contains_null_iterable_no()581 public 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 
test_contains_null_iterable_yes()586 public 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 
test_contains_null_set_no()591 public 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 
test_contains_null_set_yes()596 public 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