def test_index_pawn_CAP(self): self.assertEqual(test.index_into_python_board(self.board, 6, 0), "P")
def test_index_pawn_low(self): self.assertEqual(test.index_into_python_board(self.board, 1, 0), "p")
def test_index_queen_CAP(self): self.assertEqual(test.index_into_python_board(self.board, 7, 3), "Q")
def test_index_queen_low(self): self.assertEqual(test.index_into_python_board(self.board, 0, 3), "q")
def test_index_knight_CAP(self): self.assertEqual(test.index_into_python_board(self.board, 7, 1), "N")
def test_index_knight_low(self): self.assertEqual(test.index_into_python_board(self.board, 0, 1), "n")
def test_index_rook_low(self): self.assertEqual(test.index_into_python_board(self.board, 0, 0), "r")
def test_index_rook_CAP(self): self.assertEqual(test.index_into_python_board(self.board, 7, 0), "R")
def test_index_empty(self): self.assertEqual(test.index_into_python_board(self.board, 2, 0), ".")
def test_index_king_low(self): self.assertEqual(test.index_into_python_board(self.board, 0, 4), "k")
def test_index_king_CAP(self): self.assertEqual(test.index_into_python_board(self.board, 7, 4), "K")