Completed
Branch master (7b7e33)
by Tomasz
05:27 queued 03:26
created

CommandTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testInitialize() 0 5 1
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