Completed
Push — master ( ccfe3f...09a839 )
by Tomasz
03:07
created

DomainIdTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testInitialize() 0 4 1
1
<?php
2
/**
3
 * Copyright
4
 */
5
namespace Hexarchium\CoreDomain\Tests\Model\Domain;
6
7
8
use Hexarchium\CoreDomain\Model\Domain\DomainId;
9
10
class DomainIdTest extends \PHPUnit_Framework_TestCase
11
{
12
13
    public function testInitialize()
14
    {
15
        $this->assertInstanceOf(DomainId::class, new DomainId('1'));
16
    }
17
}
18