ComposerTestCase   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 9
c 1
b 0
f 0
dl 0
loc 21
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testComposerInit() 0 7 1
A testInitComposerWithDescription() 0 10 1
1
<?php
2
3
namespace Maestriam\Samurai\Tests\Unit\Entities\Composer;
4
5
use Maestriam\Samurai\Entities\Composer;
6
use Maestriam\Samurai\Entities\Theme;
7
use Maestriam\Samurai\Tests\TestCase;
8
9
class ComposerTestCase extends TestCase
10
{
11
    public function testComposerInit()
12
    {
13
        $theme = new Theme('bands/vixen');
14
15
        $composer = new Composer($theme);
16
17
        $this->assertInstanceOf(Composer::class, $composer);
18
    }
19
20
    public function testInitComposerWithDescription()
21
    {        
22
        $description = 'my new theme';
23
24
        $theme = new Theme('bands/vixen');
25
        
26
        $composer = new Composer($theme, $description);
27
28
        $this->assertInstanceOf(Composer::class, $composer);
29
        $this->assertEquals($description, $composer->description());
30
    }
31
}