Completed
Branch master (07e3fa)
by Bryan
50:48 queued 36:50
created

ExceptionTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testException() 0 6 1
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