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