LoadThemesServiceProviderTest::testService()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 7
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 14
rs 10
1
<?php
2
3
namespace Maestriam\Samurai\Tests\Unit\Providers;
4
5
use Maestriam\Samurai\Entities\Base;
6
use Maestriam\Samurai\Providers\LoadThemesServiceProvider;
7
use Maestriam\Samurai\Tests\TestCase;
8
9
class LoadThemesServiceProviderTest extends TestCase
10
{
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
}