ComposerTestCase::testComposerInit()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 7
rs 10
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
}