コード例 #1
0
 public function testGameIsWon()
 {
     $game = new Game('foo', 10);
     $game->tryLetter('o');
     $game->tryLetter('f');
     $this->assertEquals(array('f', 'o', 'o'), $game->getHiddenWord());
     $this->assertTrue($game->isWon());
 }
コード例 #2
0
 public function save(Game $game)
 {
     $this->session->set('hangman', $game->getContext());
 }