| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class SecurityTest extends \WP_UnitTestCase { |
||
| 6 | /** |
||
| 7 | * Test get calculations parameters in. |
||
| 8 | */ |
||
| 9 | public function test_get_calculations_parameters_in() { |
||
| 10 | $parameters = Security::get_calculations_parameters_in(); |
||
| 11 | |||
| 12 | $this->assertContains( Parameters::AMOUNT, $parameters ); |
||
| 13 | } |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Test get calculations parameters out. |
||
| 17 | */ |
||
| 18 | public function test_get_calculations_parameters_out() { |
||
| 22 | } |
||
| 23 | } |
||
| 24 |