public void testSneakyThrow() throws Exception {
   com.google.common.collect.AbstractIteratorTest testCase =
       new com.google.common.collect.AbstractIteratorTest();
   testCase.testSneakyThrow();
 }
 public void testReentrantHasNext() throws Exception {
   com.google.common.collect.AbstractIteratorTest testCase =
       new com.google.common.collect.AbstractIteratorTest();
   testCase.testReentrantHasNext();
 }
 public void testDefaultBehaviorOfPeekForEmptyIteration() throws Exception {
   com.google.common.collect.AbstractIteratorTest testCase =
       new com.google.common.collect.AbstractIteratorTest();
   testCase.testDefaultBehaviorOfPeekForEmptyIteration();
 }
 public void testExceptionAfterEndOfData() throws Exception {
   com.google.common.collect.AbstractIteratorTest testCase =
       new com.google.common.collect.AbstractIteratorTest();
   testCase.testExceptionAfterEndOfData();
 }
 public void testDefaultBehaviorOfNextAndHasNext() throws Exception {
   com.google.common.collect.AbstractIteratorTest testCase =
       new com.google.common.collect.AbstractIteratorTest();
   testCase.testDefaultBehaviorOfNextAndHasNext();
 }