/**
  * Test the playerExists method.
  */
 public function testPlayerExists()
 {
     $destiny = new Destiny($this->http());
     $playerExists = $destiny->playerExists('Player', 1);
     $this->assertInternalType('bool', $playerExists);
 }