Passed
Push — master ( 6515e3...7b7e33 )
by Tomasz
03:55
created

CommandTest::testInitialize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
/**
3
 * Copyright
4
 */
5
namespace Hexarchium\CoreDomain\Tests\UseCase\CreateDomain;
6
7
8
use Hexarchium\CoreDomain\UseCase\CreateDomain\Command;
9
10
class CommandTest extends \PHPUnit_Framework_TestCase
11
{
12
    public function testInitialize()
13
    {
14
        $command = new Command('test');
15
        $this->assertEquals('test', $command->getDomainId());
16
    }
17
}
18