1 | <?php |
||
17 | class AbstractMediaInformationTest extends \PHPUnit_Framework_TestCase { |
||
18 | |||
19 | /** |
||
20 | * @var AbstractMediaInformation |
||
21 | */ |
||
22 | protected $object; |
||
23 | |||
24 | /** |
||
25 | * Sets up the fixture, for example, opens a network connection. |
||
26 | * This method is called before a test is executed. |
||
27 | */ |
||
28 | protected function setUp(){ |
||
31 | |||
32 | /** |
||
33 | * Tears down the fixture, for example, closes a network connection. |
||
34 | * This method is called after a test is executed. |
||
35 | */ |
||
36 | protected function tearDown(){ |
||
38 | |||
39 | /** |
||
40 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setTitle |
||
41 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getTitle |
||
42 | */ |
||
43 | public function testTitle(){ |
||
47 | |||
48 | /** |
||
49 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setMimeType |
||
50 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getMimeType |
||
51 | */ |
||
52 | public function testMimeType(){ |
||
56 | |||
57 | /** |
||
58 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setFilePath |
||
59 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getFilePath |
||
60 | */ |
||
61 | public function testFilePath(){ |
||
65 | |||
66 | /** |
||
67 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setFileSize |
||
68 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getFileSize |
||
69 | */ |
||
70 | public function testFileSize(){ |
||
74 | |||
75 | |||
76 | } |