Exemplo n.º 1
0
 public function testPaperEqualsPaperShouldReturnDraw()
 {
     $joKenPo = new JoKenPo(JoKenPo::PAPER, JoKenPo::PAPER);
     $this->assertEquals('draw', $joKenPo->getWinner());
 }
Exemplo n.º 2
0
 public function testRockEqualsRock()
 {
     $game = new JoKenPo('rock', 'rock');
     $this->assertEquals('draw', $game->getWinner());
 }