Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
46 | public function testHetrixtoolsServiceResponseWrongJson() |
||
47 | { |
||
48 | //Test with empty string |
||
49 | $responseJson = ''; |
||
50 | HetrixtoolsServiceResponse::fromJson($responseJson); |
||
51 | |||
52 | //Test with invalid Json |
||
53 | $responseJson = 'invalidJson'; |
||
54 | HetrixtoolsServiceResponse::fromJson($responseJson); |
||
55 | } |
||
56 | } |