Completed
Push — master ( 3ff634...3c8585 )
by Hannes
01:33
created

ReadmeTestCase::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 2
eloc 2
nc 2
nop 1
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace hanneskod\readmetester\PHPUnit;
6
7
class ReadmeTestCase extends \PHPUnit\Framework\TestCase
8
{
9
    public function assertReadme(string $filename)
10
    {
11
        (new AssertReadme($this))->assertReadme($filename);
12
    }
13
}
14