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

ChangeEntryTest::testStuff()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
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