| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function test_from_json() { |
||
| 42 | $json = \file_get_contents( __DIR__ . '/../json/error.json', true ); |
||
| 43 | |||
| 44 | $data = \json_decode( $json ); |
||
| 45 | |||
| 46 | $error = Error::from_json( $data ); |
||
| 47 | |||
| 48 | $this->assertEquals( 1004, $error->getCode() ); |
||
| 49 | $this->assertEquals( 'Property not found in request: body.card.number.', $error->getMessage() ); |
||
| 50 | } |
||
| 52 |