AbstractPortTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testConstructor() 0 4 1
1
<?php
2
3
namespace Cowglow\InstagramGallery\Tests\Infrastructure;
4
5
use Cowglow\InstagramGallery\Infrastructure\AbstractPort;
6
use Cowglow\InstagramGallery\Tests\AbstractTestBase;
7
8
class AbstractPortTest extends AbstractTestBase
9
{
10
    public function testConstructor(): void
11
    {
12
        $this->assertClassHasAttribute('dataBind', AbstractPort::class);
13
        $this->assertClassHasAttribute('dataType', AbstractPort::class);
14
    }
15
}
16