DataCheckerTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCanConstruct() 0 11 1
1
<?php
2
3
namespace SES\Tests;
4
5
use SES\DataChecker;
6
7
/**
8
 * @covers \SES\DataChecker
9
 *
10
 * @group semantic-signup
11
 *
12
 * @license GNU GPL v2+
13
 * @since 1.0
14
 *
15
 * @author mwjames
16
 */
17
class DataCheckerTest extends \PHPUnit_Framework_TestCase {
18
19
	public function testCanConstruct() {
20
21
		$instance = $this->getMockBuilder( '\SES\DataChecker' )
22
			->disableOriginalConstructor()
23
			->getMockForAbstractClass();
24
25
		$this->assertInstanceOf(
26
			'\SES\DataChecker',
27
			$instance
28
		);
29
	}
30
31
}
32