123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:53.
- */
- class MultipleIteratorTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var MultipleIterator
- */
- protected $object;
- /**
- * Sets up the fixture, for example, opens a network connection.
- * This method is called before a test is executed.
- */
- protected function setUp()
- {
- $this->object = new MultipleIterator;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers MultipleIterator::getFlags
- * @todo Implement testGetFlags().
- */
- public function testGetFlags()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::setFlags
- * @todo Implement testSetFlags().
- */
- public function testSetFlags()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::attachIterator
- * @todo Implement testAttachIterator().
- */
- public function testAttachIterator()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::detachIterator
- * @todo Implement testDetachIterator().
- */
- public function testDetachIterator()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::containsIterator
- * @todo Implement testContainsIterator().
- */
- public function testContainsIterator()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::countIterators
- * @todo Implement testCountIterators().
- */
- public function testCountIterators()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::rewind
- * @todo Implement testRewind().
- */
- public function testRewind()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::valid
- * @todo Implement testValid().
- */
- public function testValid()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::key
- * @todo Implement testKey().
- */
- public function testKey()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::current
- * @todo Implement testCurrent().
- */
- public function testCurrent()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers MultipleIterator::next
- * @todo Implement testNext().
- */
- public function testNext()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|