Exemplo n.º 1
0
 /**
  * @dataProvider provideInvalidContentTypes
  */
 public function testInvalidJsonData($contentType, $body)
 {
     list($helper, $httpKernel, $container) = $this->createContext();
     $response = new Response($body, 200, ['Content-Type' => $contentType]);
     $this->assertInstanceOf('\\evaisse\\SimpleHttpBundle\\Http\\Exception\\InvalidResponseBodyException', $response->getError());
 }