/**
  * Test the fetchPlayer method.
  */
 public function testFetchPlayer()
 {
     $destiny = new Destiny($this->http());
     $player = $destiny->fetchPlayer('aFreshMelon', 1);
     $this->assertInstanceOf('Destiny\\Game\\Player', $player);
 }