1 | <?php |
||
8 | class PhpMp3InfoTest extends TestCase { |
||
9 | |||
10 | /** |
||
11 | * @var string filePath |
||
12 | */ |
||
13 | private $filePath = __DIR__ . '/testFiles/ZOE.LEELA_-_Pop_Up.mp3'; |
||
14 | |||
15 | /** |
||
16 | * @var PhpMp3Info |
||
17 | */ |
||
18 | protected $mp3info; |
||
19 | |||
20 | public function testTags() |
||
33 | |||
34 | /** |
||
35 | * @expectedException \RuntimeException |
||
36 | */ |
||
37 | public function testFailCommand() |
||
42 | |||
43 | /** |
||
44 | * @expectedException \Exception |
||
45 | */ |
||
46 | public function testFailFile() |
||
51 | |||
52 | } |
||
53 |