public function testExpiringCookie()
 {
     $handler = new CookieHandler();
     $response = $handler->expireCookie($this->response, 'testcookie1');
     $cookie = $response->getHeaderLine('Set-Cookie');
     $this->assertStringStartsWith('testcookie1=; Expires=', $cookie);
 }