This commit is contained in:
Romain Neutron 2012-04-13 14:28:18 +02:00
commit c29cabb3bb
3 changed files with 0 additions and 32 deletions

View file

@ -2,8 +2,6 @@
namespace FFMpeg;
require_once dirname(__FILE__) . '/../../../src/FFMpeg/Binary.php';
class BinaryTest extends \PHPUnit_Framework_TestCase
{

View file

@ -2,12 +2,6 @@
namespace FFMpeg\Format;
require_once dirname(__FILE__) . '/../../../../src/FFMpeg/Format/DefaultAudioFormat.php';
/**
* Test class for DefaultAudioFormat.
* Generated by PHPUnit on 2012-04-13 at 12:32:39.
*/
class DefaultAudioFormatTest extends \PHPUnit_Framework_TestCase
{
@ -16,24 +10,11 @@ class DefaultAudioFormatTest extends \PHPUnit_Framework_TestCase
*/
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 DefaultAudioFormatTester();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FFMpeg\Format\DefaultAudioFormat::getExtraParams
*/

View file

@ -2,12 +2,6 @@
namespace FFMpeg\Format;
require_once dirname(__FILE__) . '/../../../../src/FFMpeg/Format/DefaultVideoFormat.php';
/**
* Test class for DefaultVideoFormat.
* Generated by PHPUnit on 2012-04-13 at 12:32:40.
*/
class DefaultVideoFormatTest extends \PHPUnit_Framework_TestCase
{
@ -16,10 +10,6 @@ class DefaultVideoFormatTest extends \PHPUnit_Framework_TestCase
*/
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 DefaultVideoFormatTester(320, 240);
@ -224,4 +214,3 @@ class DefaultVideoFormatTester extends DefaultVideoFormat
}
}