Completed
Push — master ( 47b9ab...741c62 )
by Thomas Mauro
01:54
created

InvalidArgumentExceptionTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Facile\ZFLinkHeadersModule\Exception;
6
7
use PHPUnit\Framework\TestCase;
8
9
class InvalidArgumentExceptionTest extends TestCase
10
{
11
    public function testImplementsInterface()
12
    {
13
        $exception = new InvalidArgumentException();
14
15
        $this->assertInstanceOf(ExceptionInterface::class, $exception);
16
        $this->assertInstanceOf(\InvalidArgumentException::class, $exception);
17
    }
18
}
19