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

ConfigTest::test_config()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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