Completed
Push — master ( 7c792b...5c54ea )
by Bryan
01:53
created

CityTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCityCreation() 0 4 1
1
<?php
2
namespace Bhhaskin\WeatherBee\Test;
3
4
use PHPUnit\Framework\TestCase;
5
use Bhhaskin\WeatherBee\Util\City;
6
7
/**
8
 * @coversDefaultClass Bhhaskin\WeatherBee\Util\City
9
 */
10
class CityTest extends TestCase
11
{
12
    /**
13
     * @covers ::__construct
14
     */
15
    public function testCityCreation()
16
    {
17
        $this->assertInstanceOf(City::class, new City());
18
    }
19
}
20