123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:55.
- */
- class ZipArchiveTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var ZipArchive
- */
- 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 ZipArchive;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers ZipArchive::open
- * @todo Implement testOpen().
- */
- public function testOpen()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::close
- * @todo Implement testClose().
- */
- public function testClose()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getStatusString
- * @todo Implement testGetStatusString().
- */
- public function testGetStatusString()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::addEmptyDir
- * @todo Implement testAddEmptyDir().
- */
- public function testAddEmptyDir()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::addFromString
- * @todo Implement testAddFromString().
- */
- public function testAddFromString()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::addFile
- * @todo Implement testAddFile().
- */
- public function testAddFile()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::addGlob
- * @todo Implement testAddGlob().
- */
- public function testAddGlob()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::addPattern
- * @todo Implement testAddPattern().
- */
- public function testAddPattern()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::renameIndex
- * @todo Implement testRenameIndex().
- */
- public function testRenameIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::renameName
- * @todo Implement testRenameName().
- */
- public function testRenameName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::setArchiveComment
- * @todo Implement testSetArchiveComment().
- */
- public function testSetArchiveComment()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getArchiveComment
- * @todo Implement testGetArchiveComment().
- */
- public function testGetArchiveComment()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::setCommentIndex
- * @todo Implement testSetCommentIndex().
- */
- public function testSetCommentIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::setCommentName
- * @todo Implement testSetCommentName().
- */
- public function testSetCommentName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getCommentIndex
- * @todo Implement testGetCommentIndex().
- */
- public function testGetCommentIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getCommentName
- * @todo Implement testGetCommentName().
- */
- public function testGetCommentName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::deleteIndex
- * @todo Implement testDeleteIndex().
- */
- public function testDeleteIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::deleteName
- * @todo Implement testDeleteName().
- */
- public function testDeleteName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::statName
- * @todo Implement testStatName().
- */
- public function testStatName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::statIndex
- * @todo Implement testStatIndex().
- */
- public function testStatIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::locateName
- * @todo Implement testLocateName().
- */
- public function testLocateName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getNameIndex
- * @todo Implement testGetNameIndex().
- */
- public function testGetNameIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::unchangeArchive
- * @todo Implement testUnchangeArchive().
- */
- public function testUnchangeArchive()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::unchangeAll
- * @todo Implement testUnchangeAll().
- */
- public function testUnchangeAll()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::unchangeIndex
- * @todo Implement testUnchangeIndex().
- */
- public function testUnchangeIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::unchangeName
- * @todo Implement testUnchangeName().
- */
- public function testUnchangeName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::extractTo
- * @todo Implement testExtractTo().
- */
- public function testExtractTo()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getFromName
- * @todo Implement testGetFromName().
- */
- public function testGetFromName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getFromIndex
- * @todo Implement testGetFromIndex().
- */
- public function testGetFromIndex()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ZipArchive::getStream
- * @todo Implement testGetStream().
- */
- public function testGetStream()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|