| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function test_values( $order_response ) { |
||
| 48 | $expected = new OrderResponse(); |
||
| 49 | $expected->order_id = '52'; |
||
| 50 | $expected->pay_id = '0'; |
||
| 51 | $expected->nc_error = '50001123'; |
||
| 52 | $expected->status = '0'; |
||
| 53 | $expected->nc_error_plus = 'Card type not active for the merchant'; |
||
| 54 | |||
| 55 | $this->assertEquals( $expected, $order_response ); |
||
| 56 | } |
||
| 58 |