Example #1
0
 /**
  * @covers  Shutterstock\Presto\Response::parseHeader
  */
 public function testHeaderParseWithEmpty()
 {
     $response = new Response($this->getTestMeta(), $this->getTestData(), $this->getTestHeader());
     $header = '';
     $header = $response->parseHeader($header);
     $this->assertEquals(array(), $header);
 }