You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
4.0 KiB
160 lines
4.0 KiB
<?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.'
|
|
);
|
|
}
|
|
}
|
|
|