def test_full_set(self):
     test_moves = [1, 2, 3, 4, 5, 6, 7, 8, 9]
     num_turns = 0
     next_play = 9
     cont = tic_tac_toe.check_end_game(next_play, num_turns, test_moves)
     self.assertEqual(False, cont)
 def test_set_4(self):
     test_moves = [1, 4, 7]
     num_turns = 0
     next_play = 7
     cont = tic_tac_toe.check_end_game(next_play, num_turns, test_moves)
     self.assertEqual(False, cont)
 def test_empty_set(self):
     test_moves = []
     num_turns = 0
     next_play = 1
     cont = tic_tac_toe.check_end_game(next_play, num_turns, test_moves)
     self.assertEqual(True, cont)