Minor - Remove deprecated Zip class in PHPUnit

1.10.x
Yannick Warnier 11 years ago
parent 53564f7476
commit a76c0b261e
  1. 100
      tests/phpunit/classes/ZipTest.class.php

@ -1,100 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2012-10-01 at 14:44:10.
*/
class ZipTest extends PHPUnit_Framework_TestCase
{
/**
* @var Zip
*/
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 Zip;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers Zip::pool
* @todo Implement testPool().
*/
public function testPool()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Zip::create
* @todo Implement testCreate().
*/
public function testCreate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Zip::get_path
* @todo Implement testGet_path().
*/
public function testGet_path()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Zip::get_hash
* @todo Implement testGet_hash().
*/
public function testGet_hash()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Zip::add
* @todo Implement testAdd().
*/
public function testAdd()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Zip::callback
* @todo Implement testCallback().
*/
public function testCallback()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}
Loading…
Cancel
Save