예제 #1
0
 public function test_it_returns_null_if_no_sequence_completed_when_retrieving_winner()
 {
     $this->board->shouldReceive("hasFullSequenceMarked")->andReturn(false);
     $this->assertEquals(null, $this->game->getWinner());
 }