Esempio n. 1
0
 def create_start_game() -> Game:
     start_board = Board.create_start_board()
     return Game(start_board, Colour.WHITE)
Esempio n. 2
0
 def test_create_start_board(self):
     start_board = Board.create_start_board()
     assert start_board is not None
Esempio n. 3
0
def main():
    _ = Board.create_start_board()
    _ = Game.create_start_game()