1 | <?php namespace Modules\Core\Tests\Theme; |
||
6 | class ThemeTest extends BaseTestCase |
||
7 | { |
||
8 | /** |
||
9 | * @var \Modules\Core\Foundation\Theme\Theme |
||
10 | */ |
||
11 | protected $theme; |
||
12 | |||
13 | public function setUp() |
||
19 | |||
20 | /** @test */ |
||
21 | public function it_should_return_name() |
||
25 | |||
26 | /** @test */ |
||
27 | public function it_should_return_name_in_lowercase() |
||
31 | |||
32 | /** @test */ |
||
33 | public function it_should_return_correct_path() |
||
37 | |||
38 | private function getPath() |
||
42 | } |
||
43 |