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 IteratorsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { 18 @Override public String getModuleName() { 19 return "com.google.common.collect.testModule"; 20 } 21 public void testAddAllToList() throws Exception { 22 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 23 testCase.testAddAllToList(); 24 } 25 26 public void testAddAllToSet() throws Exception { 27 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 28 testCase.testAddAllToSet(); 29 } 30 31 public void testAddAllWithEmptyIterator() throws Exception { 32 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 33 testCase.testAddAllWithEmptyIterator(); 34 } 35 36 public void testAdvance_basic() throws Exception { 37 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 38 testCase.testAdvance_basic(); 39 } 40 41 public void testAdvance_illegalArgument() throws Exception { 42 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 43 testCase.testAdvance_illegalArgument(); 44 } 45 46 public void testAdvance_pastEnd() throws Exception { 47 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 48 testCase.testAdvance_pastEnd(); 49 } 50 51 public void testAll() throws Exception { 52 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 53 testCase.testAll(); 54 } 55 56 public void testAny() throws Exception { 57 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 58 testCase.testAny(); 59 } 60 61 public void testAsEnumerationEmpty() throws Exception { 62 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 63 testCase.testAsEnumerationEmpty(); 64 } 65 66 public void testAsEnumerationSingleton() throws Exception { 67 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 68 testCase.testAsEnumerationSingleton(); 69 } 70 71 public void testAsEnumerationTypical() throws Exception { 72 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 73 testCase.testAsEnumerationTypical(); 74 } 75 76 public void testConcatContainingNull() throws Exception { 77 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 78 testCase.testConcatContainingNull(); 79 } 80 81 public void testConcatVarArgsContainingNull() throws Exception { 82 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 83 testCase.testConcatVarArgsContainingNull(); 84 } 85 86 public void testConsumingIterator() throws Exception { 87 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 88 testCase.testConsumingIterator(); 89 } 90 91 public void testCycleNoSuchElementException() throws Exception { 92 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 93 testCase.testCycleNoSuchElementException(); 94 } 95 96 public void testCycleOfEmpty() throws Exception { 97 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 98 testCase.testCycleOfEmpty(); 99 } 100 101 public void testCycleOfOne() throws Exception { 102 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 103 testCase.testCycleOfOne(); 104 } 105 106 public void testCycleOfOneWithRemove() throws Exception { 107 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 108 testCase.testCycleOfOneWithRemove(); 109 } 110 111 public void testCycleOfTwo() throws Exception { 112 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 113 testCase.testCycleOfTwo(); 114 } 115 116 public void testCycleOfTwoWithRemove() throws Exception { 117 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 118 testCase.testCycleOfTwoWithRemove(); 119 } 120 121 public void testCycleRemoveAfterHasNext() throws Exception { 122 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 123 testCase.testCycleRemoveAfterHasNext(); 124 } 125 126 public void testCycleRemoveSameElementTwice() throws Exception { 127 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 128 testCase.testCycleRemoveSameElementTwice(); 129 } 130 131 public void testCycleRemoveWithoutNext() throws Exception { 132 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 133 testCase.testCycleRemoveWithoutNext(); 134 } 135 136 public void testCycleWhenRemoveIsNotSupported() throws Exception { 137 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 138 testCase.testCycleWhenRemoveIsNotSupported(); 139 } 140 141 public void testElementsEqual() throws Exception { 142 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 143 testCase.testElementsEqual(); 144 } 145 146 public void testEmptyIterator() throws Exception { 147 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 148 testCase.testEmptyIterator(); 149 } 150 151 public void testEmptyListIterator() throws Exception { 152 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 153 testCase.testEmptyListIterator(); 154 } 155 156 public void testEmptyModifiableIterator() throws Exception { 157 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 158 testCase.testEmptyModifiableIterator(); 159 } 160 161 public void testFilterMatchAll() throws Exception { 162 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 163 testCase.testFilterMatchAll(); 164 } 165 166 public void testFilterNoMatch() throws Exception { 167 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 168 testCase.testFilterNoMatch(); 169 } 170 171 public void testFilterNothing() throws Exception { 172 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 173 testCase.testFilterNothing(); 174 } 175 176 public void testFilterSimple() throws Exception { 177 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 178 testCase.testFilterSimple(); 179 } 180 181 public void testFind_firstElement() throws Exception { 182 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 183 testCase.testFind_firstElement(); 184 } 185 186 public void testFind_lastElement() throws Exception { 187 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 188 testCase.testFind_lastElement(); 189 } 190 191 public void testFind_matchAlways() throws Exception { 192 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 193 testCase.testFind_matchAlways(); 194 } 195 196 public void testFind_notPresent() throws Exception { 197 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 198 testCase.testFind_notPresent(); 199 } 200 201 public void testFind_withDefault_first() throws Exception { 202 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 203 testCase.testFind_withDefault_first(); 204 } 205 206 public void testFind_withDefault_last() throws Exception { 207 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 208 testCase.testFind_withDefault_last(); 209 } 210 211 public void testFind_withDefault_matchAlways() throws Exception { 212 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 213 testCase.testFind_withDefault_matchAlways(); 214 } 215 216 public void testFind_withDefault_notPresent() throws Exception { 217 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 218 testCase.testFind_withDefault_notPresent(); 219 } 220 221 public void testFind_withDefault_notPresent_nullReturn() throws Exception { 222 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 223 testCase.testFind_withDefault_notPresent_nullReturn(); 224 } 225 226 public void testForArrayEmpty() throws Exception { 227 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 228 testCase.testForArrayEmpty(); 229 } 230 231 public void testForArrayLength0() throws Exception { 232 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 233 testCase.testForArrayLength0(); 234 } 235 236 public void testForArrayOffset() throws Exception { 237 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 238 testCase.testForArrayOffset(); 239 } 240 241 public void testForArrayTypical() throws Exception { 242 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 243 testCase.testForArrayTypical(); 244 } 245 246 public void testForEnumerationEmpty() throws Exception { 247 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 248 testCase.testForEnumerationEmpty(); 249 } 250 251 public void testForEnumerationSingleton() throws Exception { 252 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 253 testCase.testForEnumerationSingleton(); 254 } 255 256 public void testForEnumerationTypical() throws Exception { 257 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 258 testCase.testForEnumerationTypical(); 259 } 260 261 public void testFrequency() throws Exception { 262 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 263 testCase.testFrequency(); 264 } 265 266 public void testGetLast_basic() throws Exception { 267 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 268 testCase.testGetLast_basic(); 269 } 270 271 public void testGetLast_exception() throws Exception { 272 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 273 testCase.testGetLast_exception(); 274 } 275 276 public void testGetLast_withDefault_empty() throws Exception { 277 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 278 testCase.testGetLast_withDefault_empty(); 279 } 280 281 public void testGetLast_withDefault_empty_null() throws Exception { 282 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 283 testCase.testGetLast_withDefault_empty_null(); 284 } 285 286 public void testGetLast_withDefault_singleton() throws Exception { 287 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 288 testCase.testGetLast_withDefault_singleton(); 289 } 290 291 public void testGetLast_withDefault_two() throws Exception { 292 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 293 testCase.testGetLast_withDefault_two(); 294 } 295 296 public void testGetNext_withDefault_empty() throws Exception { 297 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 298 testCase.testGetNext_withDefault_empty(); 299 } 300 301 public void testGetNext_withDefault_empty_null() throws Exception { 302 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 303 testCase.testGetNext_withDefault_empty_null(); 304 } 305 306 public void testGetNext_withDefault_singleton() throws Exception { 307 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 308 testCase.testGetNext_withDefault_singleton(); 309 } 310 311 public void testGetNext_withDefault_two() throws Exception { 312 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 313 testCase.testGetNext_withDefault_two(); 314 } 315 316 public void testGetOnlyElement_noDefault_empty() throws Exception { 317 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 318 testCase.testGetOnlyElement_noDefault_empty(); 319 } 320 321 public void testGetOnlyElement_noDefault_fiveElements() throws Exception { 322 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 323 testCase.testGetOnlyElement_noDefault_fiveElements(); 324 } 325 326 public void testGetOnlyElement_noDefault_moreThanFiveElements() throws Exception { 327 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 328 testCase.testGetOnlyElement_noDefault_moreThanFiveElements(); 329 } 330 331 public void testGetOnlyElement_noDefault_moreThanOneLessThanFiveElements() throws Exception { 332 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 333 testCase.testGetOnlyElement_noDefault_moreThanOneLessThanFiveElements(); 334 } 335 336 public void testGetOnlyElement_noDefault_valid() throws Exception { 337 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 338 testCase.testGetOnlyElement_noDefault_valid(); 339 } 340 341 public void testGetOnlyElement_withDefault_empty() throws Exception { 342 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 343 testCase.testGetOnlyElement_withDefault_empty(); 344 } 345 346 public void testGetOnlyElement_withDefault_empty_null() throws Exception { 347 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 348 testCase.testGetOnlyElement_withDefault_empty_null(); 349 } 350 351 public void testGetOnlyElement_withDefault_singleton() throws Exception { 352 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 353 testCase.testGetOnlyElement_withDefault_singleton(); 354 } 355 356 public void testGetOnlyElement_withDefault_two() throws Exception { 357 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 358 testCase.testGetOnlyElement_withDefault_two(); 359 } 360 361 public void testGet_atSize() throws Exception { 362 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 363 testCase.testGet_atSize(); 364 } 365 366 public void testGet_basic() throws Exception { 367 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 368 testCase.testGet_basic(); 369 } 370 371 public void testGet_empty() throws Exception { 372 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 373 testCase.testGet_empty(); 374 } 375 376 public void testGet_negativeIndex() throws Exception { 377 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 378 testCase.testGet_negativeIndex(); 379 } 380 381 public void testGet_pastEnd() throws Exception { 382 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 383 testCase.testGet_pastEnd(); 384 } 385 386 public void testGet_withDefault_atSize() throws Exception { 387 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 388 testCase.testGet_withDefault_atSize(); 389 } 390 391 public void testGet_withDefault_basic() throws Exception { 392 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 393 testCase.testGet_withDefault_basic(); 394 } 395 396 public void testGet_withDefault_negativeIndex() throws Exception { 397 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 398 testCase.testGet_withDefault_negativeIndex(); 399 } 400 401 public void testGet_withDefault_pastEnd() throws Exception { 402 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 403 testCase.testGet_withDefault_pastEnd(); 404 } 405 406 public void testIndexOf_consumedData() throws Exception { 407 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 408 testCase.testIndexOf_consumedData(); 409 } 410 411 public void testIndexOf_consumedDataNoMatch() throws Exception { 412 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 413 testCase.testIndexOf_consumedDataNoMatch(); 414 } 415 416 public void testIndexOf_consumedDataWithDuplicates() throws Exception { 417 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 418 testCase.testIndexOf_consumedDataWithDuplicates(); 419 } 420 421 public void testLimit() throws Exception { 422 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 423 testCase.testLimit(); 424 } 425 426 public void testLimitRemove() throws Exception { 427 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 428 testCase.testLimitRemove(); 429 } 430 431 public void testNullFriendlyTransform() throws Exception { 432 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 433 testCase.testNullFriendlyTransform(); 434 } 435 436 public void testPaddedPartitionRandomAccess() throws Exception { 437 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 438 testCase.testPaddedPartitionRandomAccess(); 439 } 440 441 public void testPaddedPartition_badSize() throws Exception { 442 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 443 testCase.testPaddedPartition_badSize(); 444 } 445 446 public void testPaddedPartition_empty() throws Exception { 447 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 448 testCase.testPaddedPartition_empty(); 449 } 450 451 public void testPaddedPartition_singleton1() throws Exception { 452 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 453 testCase.testPaddedPartition_singleton1(); 454 } 455 456 public void testPaddedPartition_singleton2() throws Exception { 457 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 458 testCase.testPaddedPartition_singleton2(); 459 } 460 461 public void testPaddedPartition_view() throws Exception { 462 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 463 testCase.testPaddedPartition_view(); 464 } 465 466 public void testPartition_badSize() throws Exception { 467 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 468 testCase.testPartition_badSize(); 469 } 470 471 public void testPartition_empty() throws Exception { 472 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 473 testCase.testPartition_empty(); 474 } 475 476 public void testPartition_singleton1() throws Exception { 477 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 478 testCase.testPartition_singleton1(); 479 } 480 481 public void testPartition_singleton2() throws Exception { 482 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 483 testCase.testPartition_singleton2(); 484 } 485 486 public void testPartition_view() throws Exception { 487 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 488 testCase.testPartition_view(); 489 } 490 491 public void testPeekingIteratorShortCircuit() throws Exception { 492 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 493 testCase.testPeekingIteratorShortCircuit(); 494 } 495 496 public void testPoorlyBehavedTransform() throws Exception { 497 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 498 testCase.testPoorlyBehavedTransform(); 499 } 500 501 public void testRemoveAll() throws Exception { 502 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 503 testCase.testRemoveAll(); 504 } 505 506 public void testRemoveIf() throws Exception { 507 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 508 testCase.testRemoveIf(); 509 } 510 511 public void testRetainAll() throws Exception { 512 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 513 testCase.testRetainAll(); 514 } 515 516 public void testSize0() throws Exception { 517 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 518 testCase.testSize0(); 519 } 520 521 public void testSize1() throws Exception { 522 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 523 testCase.testSize1(); 524 } 525 526 public void testSize_partiallyConsumed() throws Exception { 527 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 528 testCase.testSize_partiallyConsumed(); 529 } 530 531 public void testToString() throws Exception { 532 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 533 testCase.testToString(); 534 } 535 536 public void testToStringEmptyIterator() throws Exception { 537 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 538 testCase.testToStringEmptyIterator(); 539 } 540 541 public void testToStringWithNull() throws Exception { 542 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 543 testCase.testToStringWithNull(); 544 } 545 546 public void testTransform() throws Exception { 547 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 548 testCase.testTransform(); 549 } 550 551 public void testTransformRemove() throws Exception { 552 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 553 testCase.testTransformRemove(); 554 } 555 556 public void testTryFind_alwaysFalse_isPresent() throws Exception { 557 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 558 testCase.testTryFind_alwaysFalse_isPresent(); 559 } 560 561 public void testTryFind_alwaysFalse_orDefault() throws Exception { 562 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 563 testCase.testTryFind_alwaysFalse_orDefault(); 564 } 565 566 public void testTryFind_alwaysTrue() throws Exception { 567 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 568 testCase.testTryFind_alwaysTrue(); 569 } 570 571 public void testTryFind_firstElement() throws Exception { 572 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 573 testCase.testTryFind_firstElement(); 574 } 575 576 public void testTryFind_lastElement() throws Exception { 577 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 578 testCase.testTryFind_lastElement(); 579 } 580 581 public void testUnmodifiableIteratorShortCircuit() throws Exception { 582 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 583 testCase.testUnmodifiableIteratorShortCircuit(); 584 } 585 586 public void test_contains_nonnull_no() throws Exception { 587 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 588 testCase.test_contains_nonnull_no(); 589 } 590 591 public void test_contains_nonnull_yes() throws Exception { 592 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 593 testCase.test_contains_nonnull_yes(); 594 } 595 596 public void test_contains_null_no() throws Exception { 597 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 598 testCase.test_contains_null_no(); 599 } 600 601 public void test_contains_null_yes() throws Exception { 602 com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); 603 testCase.test_contains_null_yes(); 604 } 605 } 606