Total Complexity | 4 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ThemeStructureTest extends ThemeTestCase |
||
8 | { |
||
9 | /** |
||
10 | * Verifica se retorna o |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function testSourcePath() |
||
19 | } |
||
20 | |||
21 | public function testAssetPath() |
||
22 | { |
||
23 | $theme = new Theme('sandbox/local'); |
||
24 | |||
25 | $this->assertPathString($theme->paths()->assets()); |
||
26 | } |
||
27 | |||
28 | public function testPublicPath() |
||
33 | } |
||
34 | |||
35 | private function assertPathString(string $path) |
||
47 | } |
||
48 | } |