bot tests: Improve test coverage for TicTacToeModel.
This commit improves test coverage of from 41.66% to 50%. This commit is related to #417
This commit is contained in:
parent
c2e5b14034
commit
0e8347d440
|
@ -84,6 +84,37 @@ class TestTicTacToeBot(BotTestCase, DefaultTests):
|
|||
response = tictactoeboard.contains_winning_move(board)
|
||||
self.assertEqual(response, expected_response)
|
||||
|
||||
def test_get_locations_of_char(self) -> None:
|
||||
board = [[0, 0, 0],
|
||||
[0, 0, 0],
|
||||
[0, 0, 1]]
|
||||
response = [[2, 2]]
|
||||
self._test_get_locations_of_char(board, response)
|
||||
|
||||
def _test_get_locations_of_char(self, board: List[List[int]], expected_response: List[List[int]]) -> None:
|
||||
model, message_handler = self._get_game_handlers()
|
||||
tictactoeboard = model(board)
|
||||
response = tictactoeboard.get_locations_of_char(board, 1)
|
||||
self.assertEqual(response, expected_response)
|
||||
|
||||
def test_is_valid_move(self) -> None:
|
||||
board = [[0, 0, 0],
|
||||
[0, 0, 0],
|
||||
[1, 0, 2]]
|
||||
move = "1,2"
|
||||
response = True
|
||||
self._test_is_valid_move(board, move, response)
|
||||
|
||||
move = "4,4"
|
||||
response = False
|
||||
self._test_is_valid_move(board, move, response)
|
||||
|
||||
def _test_is_valid_move(self, board: List[List[int]], move: str, expected_response: bool) -> None:
|
||||
model, message_handler = self._get_game_handlers()
|
||||
tictactoeboard = model(board)
|
||||
response = tictactoeboard.is_valid_move(move)
|
||||
self.assertEqual(response, expected_response)
|
||||
|
||||
def test_player_color(self) -> None:
|
||||
turn = 0
|
||||
response = ':cross_mark_button:'
|
||||
|
|
Loading…
Reference in a new issue