public function testSetException()
 {
     $this->track->setException($exception = $this->createExceptionMock());
     $this->assertTrue($this->track->hasException());
     $this->assertSame($exception, $this->track->getException());
 }