Completed
Push — master ( 4cf164...e90085 )
by Mike
02:35
created

InvalidLinkTest::test_it_has_a_name()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 6
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace phpDocumentor\Guides;
6
7
use PHPUnit\Framework\TestCase;
8
9
final class InvalidLinkTest extends TestCase
10
{
11
    public function test_it_has_a_name() : void
12
    {
13
        $invalidLink = new InvalidLink('name');
14
15
        $this->assertSame('name', $invalidLink->getName());
16
    }
17
}
18