| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 30 | public function testSettersAndGetters($isError, $responseText, $errorCode = null) | ||
| 31 |     { | ||
| 32 | $response = new Dynamark3Response($responseText, $errorCode); | ||
| 33 | |||
| 34 | $this->assertEquals($responseText, $response->getResponseText()); | ||
| 35 | $this->assertEquals($errorCode, $response->getErrorCode()); | ||
| 36 | $this->assertEquals($isError, $response->isError()); | ||
| 37 | } | ||
| 38 | |||
| 50 |