()
| 14 | } |
| 15 | |
| 16 | @Test |
| 17 | public void moveAsRook() { |
| 18 | Board board = new Board(); |
| 19 | board.placeRook(3, 3, Color.BLACK); |
| 20 | System.out.println(board); |
| 21 | System.out.println(board.getPiece(3, 3).getMoveList(board)); |
| 22 | Assert.assertEquals(14, board.getPiece(3, 3).getMoveList(board).size()); |
| 23 | } |
| 24 | |
| 25 | @Test |
| 26 | public void blockedByPawn() { |
nothing calls this directly
no test coverage detected