Completed
Push — feature/jetpack-packages ( d013db...3e9771 )
by
unknown
24:55 queued 18:03
created

ManagerTest::secrets_value_provider()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 24

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 24
rs 9.536
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