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.
161 lines
4.0 KiB
161 lines
4.0 KiB
![]()
13 years ago
|
<?php
|
||
|
/**
|
||
|
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:51.
|
||
|
*/
|
||
|
class DirectoryIteratorTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var DirectoryIterator
|
||
|
*/
|
||
|
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 DirectoryIterator;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Tears down the fixture, for example, closes a network connection.
|
||
|
* This method is called after a test is executed.
|
||
|
*/
|
||
|
protected function tearDown()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers DirectoryIterator::getFilename
|
||
|
* @todo Implement testGetFilename().
|
||
|
*/
|
||
|
public function testGetFilename()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers DirectoryIterator::getExtension
|
||
|
* @todo Implement testGetExtension().
|
||
|
*/
|
||
|
public function testGetExtension()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers DirectoryIterator::getBasename
|
||
|
* @todo Implement testGetBasename().
|
||
|
*/
|
||
|
public function testGetBasename()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers DirectoryIterator::isDot
|
||
|
* @todo Implement testIsDot().
|
||
|
*/
|
||
|
public function testIsDot()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers DirectoryIterator::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 DirectoryIterator::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 DirectoryIterator::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 DirectoryIterator::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 DirectoryIterator::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.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers DirectoryIterator::seek
|
||
|
* @todo Implement testSeek().
|
||
|
*/
|
||
|
public function testSeek()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers DirectoryIterator::__toString
|
||
|
* @todo Implement test__toString().
|
||
|
*/
|
||
|
public function test__toString()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
}
|