ThemeTestCase::testThemeDescription()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

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