From c29cabb3bb123c1afcf286d5131dfa5175628a29 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Fri, 13 Apr 2012 14:28:18 +0200 Subject: [PATCH] Cleanup --- tests/src/FFMpeg/BinaryTest.php | 2 -- .../FFMpeg/Format/DefaultAudioFormatTest.php | 19 ------------------- .../FFMpeg/Format/DefaultVideoFormatTest.php | 11 ----------- 3 files changed, 32 deletions(-) diff --git a/tests/src/FFMpeg/BinaryTest.php b/tests/src/FFMpeg/BinaryTest.php index 1aa9b40..04bc7b9 100644 --- a/tests/src/FFMpeg/BinaryTest.php +++ b/tests/src/FFMpeg/BinaryTest.php @@ -2,8 +2,6 @@ namespace FFMpeg; -require_once dirname(__FILE__) . '/../../../src/FFMpeg/Binary.php'; - class BinaryTest extends \PHPUnit_Framework_TestCase { diff --git a/tests/src/FFMpeg/Format/DefaultAudioFormatTest.php b/tests/src/FFMpeg/Format/DefaultAudioFormatTest.php index 6f03675..af8f74e 100644 --- a/tests/src/FFMpeg/Format/DefaultAudioFormatTest.php +++ b/tests/src/FFMpeg/Format/DefaultAudioFormatTest.php @@ -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 */ diff --git a/tests/src/FFMpeg/Format/DefaultVideoFormatTest.php b/tests/src/FFMpeg/Format/DefaultVideoFormatTest.php index 29479b8..b4ce102 100644 --- a/tests/src/FFMpeg/Format/DefaultVideoFormatTest.php +++ b/tests/src/FFMpeg/Format/DefaultVideoFormatTest.php @@ -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 } } -