Completed
Push — add/changelog-tooling ( c37726...963953 )
by
unknown
371:25 queued 360:46
created

ChangeEntryTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testStuff() 0 5 1
1
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2
/**
3
 * Tests for the changelog ChangeEntry class.
4
 *
5
 * @package automattic/jetpack-changelogger
6
 */
7
8
namespace Automattic\Jetpack\Changelog\Tests;
9
10
use Automattic\Jetpack\Changelog\ChangeEntry;
11
use InvalidArgumentException;
12
use PHPUnit\Framework\TestCase;
13
14
/**
15
 * Tests for the changelog ChangeEntry class.
16
 *
17
 * @covers \Automattic\Jetpack\Changelog\ChangeEntry
18
 */
19
class ChangeEntryTest extends TestCase {
20
	use \Yoast\PHPUnitPolyfills\Polyfills\ExpectException;
21
22
	/**
23
	 * Need to write tests.
24
	 */
25
	public function testStuff() {
26
		$this->markAsRisky( 'Write tests!' );
27
		new ChangeEntry();
28
		new InvalidArgumentException();
29
	}
30
31
}
32