コード例 #1
0
ファイル: GameTest.php プロジェクト: saro0h/sf2c2
 public function testWrongLetter()
 {
     $game = new Game('test');
     $this->assertFalse($game->tryLetter('p'));
 }
コード例 #2
0
ファイル: GameContext.php プロジェクト: saro0h/sf2c2
 public function save(Game $game)
 {
     $this->session->set('hangman', $game->getContext());
 }