publicfunctiontestAssertResponseNotHasHeader() { $this->getResponseTester(newResponse())->assertResponseNotHasHeader('X-Date'); $this->expectException(AssertionFailedError::class); $this->expectExceptionMessage('Failed asserting that the Response does not have header "Date".'); $this->getResponseTester(newResponse())->assertResponseNotHasHeader('Date'); }