123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
- */
- class PharFileInfoTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var PharFileInfo
- */
- 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 PharFileInfo;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers PharFileInfo::__destruct
- * @todo Implement test__destruct().
- */
- public function test__destruct()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::chmod
- * @todo Implement testChmod().
- */
- public function testChmod()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::compress
- * @todo Implement testCompress().
- */
- public function testCompress()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::decompress
- * @todo Implement testDecompress().
- */
- public function testDecompress()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::delMetadata
- * @todo Implement testDelMetadata().
- */
- public function testDelMetadata()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::getCompressedSize
- * @todo Implement testGetCompressedSize().
- */
- public function testGetCompressedSize()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::getCRC32
- * @todo Implement testGetCRC32().
- */
- public function testGetCRC32()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::getContent
- * @todo Implement testGetContent().
- */
- public function testGetContent()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::getMetadata
- * @todo Implement testGetMetadata().
- */
- public function testGetMetadata()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::getPharFlags
- * @todo Implement testGetPharFlags().
- */
- public function testGetPharFlags()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::hasMetadata
- * @todo Implement testHasMetadata().
- */
- public function testHasMetadata()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::isCompressed
- * @todo Implement testIsCompressed().
- */
- public function testIsCompressed()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::isCRCChecked
- * @todo Implement testIsCRCChecked().
- */
- public function testIsCRCChecked()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PharFileInfo::setMetadata
- * @todo Implement testSetMetadata().
- */
- public function testSetMetadata()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|