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