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

MessengerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
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\View\Helper;
3
4
use Redaxscript\Tests\TestCaseAbstract;
5
6
/**
7
 * MessengerTest
8
 *
9
 * @since 4.0.0
10
 *
11
 * @package Redaxscript
12
 * @category Tests
13
 * @author Henry Ruhs
14
 *
15
 * @covers Redaxscript\Admin\View\Helper\Messenger
16
 */
17
18
class MessengerTest 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