Exemplo n.º 1
0
 public function test_it_returns_array_of_players_who_have_not_buzzed()
 {
     $state = new State(new FinalJeopardyClue("mock_category", "mock_clue", "mock_answer"), ["one", "two", "three"]);
     $this->assertEquals(["one", "two", "three"], $state->getMissingBets());
 }
Exemplo n.º 2
0
 public function getFinalJeopardyClue()
 {
     return $this->finalJeopardyState->getClue();
 }