Completed
Push — master ( da58d4...61a0f7 )
by Henry
06:34
created

ArticleTest::testDummy()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
namespace Redaxscript\Tests\Admin\Model;
3
4
use Redaxscript\Tests\TestCaseAbstract;
5
6
/**
7
 * ArticleTest
8
 *
9
 * @since 4.0.0
10
 *
11
 * @package Redaxscript
12
 * @category Tests
13
 * @author Henry Ruhs
14
 *
15
 * @covers Redaxscript\Admin\Model\Article
16
 */
17
18
class ArticleTest extends TestCaseAbstract
19
{
20
	/**
21
	 * testDummy
22
	 *
23
	 * @since 4.0.0
24
	 */
25
26
	public function testDummy() : void
27
	{
28
		$this->markTestSkipped();
29
	}
30
}
31