Test Failed
Push — master ( e1fb16...2c0485 )
by Reüel
04:54
created

ConfigTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A test_config() 0 2 1
1
<?php
2
3
namespace Pronamic\WordPress\Pay\Gateways\Icepay;
4
5
/**
6
 * Title: ICEPAY - Config test
7
 * Description:
8
 * Copyright: 2005-2019 Pronamic
9
 * Company: Pronamic
10
 *
11
 * @author Remco Tolsma
12
 * @version 2.0.0
13
 */
14
class ConfigTest extends \PHPUnit_Framework_TestCase {
15
	public function test_config() {
16
		$config = new Config();
0 ignored issues
show
Unused Code introduced by
The assignment to $config is dead and can be removed.
Loading history...
17
	}
18
}
19