public function testCanPrependHeader()
 {
     $this->message->setHeader('accept', ['json', 'html']);
     $this->message->prependHeader('Accept', 'xml');
     $this->assertEquals(['xml', 'json', 'html'], $this->message->getHeader('accept')->getValue());
 }