Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function testService() |
||
12 | { |
||
13 | $theme = $this->theme('bands/heavens-gate'); |
||
14 | |||
15 | $theme->findOrCreate(); |
||
16 | |||
17 | $theme->include('musics/living-in-histeria')->create(); |
||
18 | $theme->component('musics/rising-sun')->create(); |
||
19 | |||
20 | $theme->use(); |
||
21 | |||
22 | $provider = $this->app->register(LoadThemesServiceProvider::class); |
||
23 | |||
24 | $this->assertInstanceOf(LoadThemesServiceProvider::class, $provider); |
||
25 | } |
||
26 | } |