Completed
Push — add/identity-crisis-package ( 48f437...055944 )
by
unknown
947:36 queued 938:27
created

Test_Identity_Crisis   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A test_identity_crisis() 0 3 1
1
<?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2
3
/**
4
 * Tests the Identity_Crisis package.
5
 *
6
 * @package automattic/jetpack-identity-crisis
7
 */
8
9
namespace Automattic\Jetpack;
10
11
use WorDBless\BaseTestCase;
12
13
/**
14
 * Test Identity_Crisis class
15
 */
16
class Test_Identity_Crisis extends BaseTestCase {
17
	/**
18
	 * Test Identity_Crisis.
19
	 */
20
	public function test_identity_crisis() {
21
		$this->assertTrue( true, true );
22
	}
23
}
24