예제 #1
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_pawn_CAP(self):
     self.assertEqual(test.index_into_python_board(self.board, 6, 0), "P")
예제 #2
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_pawn_low(self):
     self.assertEqual(test.index_into_python_board(self.board, 1, 0), "p")
예제 #3
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_queen_CAP(self):
     self.assertEqual(test.index_into_python_board(self.board, 7, 3), "Q")
예제 #4
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_queen_low(self):
     self.assertEqual(test.index_into_python_board(self.board, 0, 3), "q")
예제 #5
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_knight_CAP(self):
     self.assertEqual(test.index_into_python_board(self.board, 7, 1), "N")
예제 #6
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_knight_low(self):
     self.assertEqual(test.index_into_python_board(self.board, 0, 1), "n")
예제 #7
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_rook_low(self):
     self.assertEqual(test.index_into_python_board(self.board, 0, 0), "r")
예제 #8
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_rook_CAP(self):
     self.assertEqual(test.index_into_python_board(self.board, 7, 0), "R")
예제 #9
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_empty(self):
     self.assertEqual(test.index_into_python_board(self.board, 2, 0), ".")
예제 #10
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_king_low(self):
     self.assertEqual(test.index_into_python_board(self.board, 0, 4), "k")
예제 #11
0
파일: testcases.py 프로젝트: Tirore96/Chess
 def test_index_king_CAP(self):
     self.assertEqual(test.index_into_python_board(self.board, 7, 4), "K")