public function testFind()
 {
     $this->setupPlayer();
     $this->entityManager->clear();
     $this->setCountLogger();
     $player = $this->playerRepository->findOneById(1);
     $this->assertTrue($player instanceof Player);
     $this->assertSame(1, $this->getTotalQueries());
 }