Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class AllThemesTest extends TestCase |
||
9 | { |
||
10 | public function testAllThemes() |
||
11 | { |
||
12 | $this->theme('bands/scorpions')->make(); |
||
13 | $this->theme('bands/judas-priest')->make(); |
||
14 | $this->theme('bands/twisted-sisters')->make(); |
||
15 | |||
16 | $base = new Base(); |
||
17 | |||
18 | $themes = $base->all(); |
||
19 | |||
20 | $this->assertIsArray($themes); |
||
21 | $this->assertNotEmpty($themes); |
||
22 | } |
||
23 | |||
24 | public function testEmptyThemeBase() |
||
31 | } |
||
32 | } |