Failed Conditions
Push — develop ( 84789b...288de2 )
by Reüel
06:59
created

tests/src/ConfigTest.php (1 issue)

1
<?php
2
3
namespace Pronamic\WordPress\Pay\Gateways\MultiSafepay;
4
5
use PHPUnit_Framework_TestCase;
6
7
/**
8
 * Title: MultiSafepay - Config test
9
 * Description:
10
 * Copyright: 2005-2020 Pronamic
11
 * Company: Pronamic
12
 *
13
 * @author Remco Tolsma
14
 * @version 2.0.2
15
 */
16
class ConfigTest extends PHPUnit_Framework_TestCase {
17
	public function test_config() {
18
		$config = new Config();
0 ignored issues
show
The assignment to $config is dead and can be removed.
Loading history...
19
	}
20
}
21