Completed
Push — add/signature-error-reporting ( 906206...21e253 )
by
unknown
104:48 queued 94:49
created

ManagerTest::test_is_active_when_connected()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 11
rs 9.9
c 0
b 0
f 0
1
<?php
2
3
namespace Automattic\Jetpack\Connection;
4
5
use phpmock\functions\FunctionProvider;
6
use phpmock\MockBuilder;
7
use PHPUnit\Framework\TestCase;
8
9
class ManagerTest extends TestCase {
10
11
	function test_class_implements_interface() {
12
		$manager = new Manager();
13
		$this->assertInstanceOf( 'Automattic\Jetpack\Connection\Manager_Interface', $manager );
14
	}
15
}
16