ThemeTestCase   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testThemeDescription() 0 9 1
1
<?php
2
3
namespace Maestriam\Samurai\Tests\Unit\Entities\Theme;
4
5
use Maestriam\Samurai\Entities\Theme;
6
use Maestriam\Samurai\Tests\TestCase;
7
8
/**
9
 * Testes de funcionalidades básicas apresentadas no README.md
10
 */
11
class ThemeTestCase extends TestCase
12
{
13
    public function testThemeDescription()
14
    {
15
        $theme = new Theme('bands/iron-maiden');
16
        $descr = 'Run to the hills';
17
18
        $theme->description($descr);
19
20
        $this->assertIsString($theme->description());
21
        $this->assertEquals($descr, $theme->description());
22
    }    
23
}