assertSame(['WWW-Authenticate' => 'Challenge'], $exception->getHeaders()); } /** * @dataProvider headerDataProvider */ public function testHeadersSetter($headers) { $exception = new UnauthorizedHttpException('Challenge'); $exception->setHeaders($headers); $this->assertSame($headers, $exception->getHeaders()); } }