public function testWithHeader()
 {
     $response = new Response([], ['foo' => 'bar']);
     $newResponse = $response->withHeader('baz', 'qux');
     $this->assertNotSame($response, $newResponse);
     $this->assertEquals(['foo' => 'bar', 'baz' => 'qux'], $newResponse->getHeaders());
 }