1 | <?php |
||
17 | class SongInformationTest extends \PHPUnit_Framework_TestCase { |
||
18 | |||
19 | /** |
||
20 | * @var SongInformation |
||
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::setAlbum |
||
41 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getAlbum |
||
42 | */ |
||
43 | public function testAlbum(){ |
||
47 | |||
48 | /** |
||
49 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setArtist |
||
50 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getArtist |
||
51 | */ |
||
52 | public function testArtist(){ |
||
56 | |||
57 | /** |
||
58 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setTrackNumber |
||
59 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getTrackNumber |
||
60 | */ |
||
61 | public function testTrackNumber(){ |
||
65 | |||
66 | /** |
||
67 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setTotalTrackNumbers |
||
68 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getTotalTrackNumbers |
||
69 | */ |
||
70 | public function testTotalTrackNumbers(){ |
||
74 | |||
75 | /** |
||
76 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setSetNumber |
||
77 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getSetNumber |
||
78 | */ |
||
79 | public function testSetNumber(){ |
||
83 | |||
84 | /** |
||
85 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::setTotalSetNumbers |
||
86 | * @covers StingerSoft\MediaParsingBundle\Parser\Information\SongInformation::getTotalSetNumbers |
||
87 | */ |
||
88 | public function testTotalSetNumbers(){ |
||
92 | } |