Completed
Branch AUTOMATED_TESTING (6eabf7)
by Gordon
15:07
created

MappableDataTest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 3
lcom 0
cbo 1
dl 0
loc 16
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A testsetMarkerTemplateValues() 0 3 1
A testgetRenderableMap() 0 3 1
A testStaticMap() 0 3 1
1
<?php
2
3
class MappableDataTest extends SapphireTest {
4
	public function testsetMarkerTemplateValues() {
5
		$this->markTestSkipped('TODO');
6
	}
7
8
9
	public function testgetRenderableMap() {
10
		$this->markTestSkipped('TODO');
11
	}
12
13
14
	public function testStaticMap() {
15
		$this->markTestSkipped('TODO');
16
	}
17
18
}
19