| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 14 | public function providedQrCodeIsSetAsBody(): void | ||
| 15 |     { | ||
| 16 |         $qrCode = new QrCode('Hello'); | ||
| 17 | $resp = new QrCodeResponse($qrCode); | ||
| 18 | |||
| 19 |         $this->assertEquals($qrCode->getContentType(), $resp->getHeaderLine('Content-Type')); | ||
| 20 | $this->assertEquals($qrCode->writeString(), (string) $resp->getBody()); | ||
| 21 | } | ||
| 23 |