public function testIsServerOrClientError() {
$response = new Response('', 404);
$this
->assertTrue($response
->isClientError());
$this
->assertFalse($response
->isServerError());
$response = new Response('', 500);
$this
->assertFalse($response
->isClientError());
$this
->assertTrue($response
->isServerError());
}