[ ['X-Test' => 'Test'
],
['X-Test-2' => 'Test-2'
],
],
],
];
} public function testHeadersDefault() { $exception =
$this->
createException();
$this->
assertSame([],
$exception->
getHeaders());
} /**
* @dataProvider headerDataProvider
*/
public function testHeadersConstructor($headers) { $exception =
new HttpException(200, '', null,
$headers);
$this->
assertSame($headers,
$exception->
getHeaders());
}