public function testSetResponse()
 {
     $this->track->setResponse($response = $this->createResponseMock());
     $this->assertTrue($this->track->hasResponse());
     $this->assertSame($response, $this->track->getResponse());
 }