Exemple #1
0
 public function testSeeHeadersOnce()
 {
     $this->shouldFail();
     $response = new \Symfony\Component\BrowserKit\Response("", 200, ['Cache-Control' => ['no-cache', 'no-store']]);
     $this->module->client->mockResponse($response);
     $this->module->sendGET('/');
     $this->module->seeHttpHeaderOnce('Cache-Control');
 }