()
| 5 | |
| 6 | public class QueenTest { |
| 7 | @Test |
| 8 | public void moveForward() { |
| 9 | Board board = new Board(); |
| 10 | board.placeQueen(0, 0, Color.BLACK); |
| 11 | System.out.println(board); |
| 12 | System.out.println(board.getPiece(0, 0).getMoveList(board)); |
| 13 | Assert.assertEquals(21, board.getPiece(0, 0).getMoveList(board).size()); |
| 14 | } |
| 15 | |
| 16 | @Test |
| 17 | public void moveAsQueen() { |
nothing calls this directly
no test coverage detected