ArticleTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testDummy() 0 4 1
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