Completed
Push — master ( 6dc7d8...407c40 )
by Karsten
15:45
created

GanttTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getFormats() 0 3 1
A getClass() 0 3 1
1
<?php
2
3
namespace SRF\Tests\Gantt;
4
5
use SMW\Test\QueryPrinterRegistryTestCase;
6
7
class GanttTest extends QueryPrinterRegistryTestCase{
8
9
	/**
10
	 * @see QueryPrinterRegistryTestCase::getFormats
11
	 *
12
	 * @since 1.8
13
	 *
14
	 * @return array
15
	 */
16
	public function getFormats() {
17
		return [ 'gantt' ];
18
	}
19
20
	/**
21
	 * @see QueryPrinterRegistryTestCase::getClass
22
	 *
23
	 * @since 1.8
24
	 *
25
	 * @return string
26
	 */
27
	public function getClass() {
28
		return '\SRF\Gantt\GanttPrinter';
29
	}
30
}