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

GanttTest::testCanConstruct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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
}