Completed
Push — add/sync-classmapped-package ( bf1ff0...7eeaec )
by Marin
12:55 queued 01:37
created

ManagerTest::test_get_secrets_expired()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 30

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 4
dl 0
loc 30
rs 9.44
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