/**
  * Test getGame returns the game.
  *
  * @dataProvider gameProvider
  */
 public function testGetGame(GameInterface $game)
 {
     $app = new Application();
     $app->setGame($game);
     $this->assertSame($game, $app->getGame());
 }