Completed
Push — master ( 20f7b9...07e3fa )
by Bryan
37:16 queued 31:15
created

ExceptionTest::testException()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
namespace Bhhaskin\WeatherBee\Tests;
3
4
use PHPUnit\Framework\TestCase;
5
use Bhhaskin\WeatherBee\Exception;
6
7
/**
8
 * @covers Bhhaskin\WeatherBee\Exception
9
 */
10
final class ExceptionTest extends TestCase
11
{
12
    public function testException()
13
    {
14
        $this->expectException(Exception::class);
15
        throw new Exception();
16
17
    }
18
}
19