LoadThemesServiceProviderTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
c 1
b 0
f 0
dl 0
loc 16
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testService() 0 14 1
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
}