| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 9 | public function testDefaultParameters()  | 
            ||
| 10 |     { | 
            ||
| 11 |         $response = new JpegResponse('some_binary_output'); | 
            ||
| 12 | |||
| 13 | $this->assertSame(200, $response->getStatusCode());  | 
            ||
| 14 |         $this->assertSame('some_binary_output', $response->getContent()); | 
            ||
| 15 |         $this->assertSame('image/jpg', $response->headers->get('Content-Type')); | 
            ||
| 16 |         $this->assertSame('inline; filename=output.jpg', str_replace('"', '', $response->headers->get('Content-Disposition'))); | 
            ||
| 17 | }  | 
            ||
| 18 | |||
| 37 |