Completed
Pull Request — master (#467)
by
unknown
19:23
created

GanttTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCanConstruct() 0 7 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Sebastian
5
 * Date: 30.01.2019
6
 * Time: 13:47
7
 */
8
9
namespace SRF\Tests\Mermaid;
10
11
use SRF\Mermaid\Gantt;
12
13
14
class GanttTest extends \PHPUnit_Framework_TestCase{
15
16
	public function testCanConstruct() {
17
18
		$this->assertInstanceOf(
19
			Gantt::class,
20
			new Gantt( [] )
21
		);
22
	}
23
}