()
| 53 | } |
| 54 | |
| 55 | @Test |
| 56 | public void countMovesAtPosition31() { |
| 57 | Board board = Board.getBoard("8/2p5/K2p4/1P4kr/1R3p2/8/4P1P1/8 w - -"); |
| 58 | System.out.println(board); |
| 59 | Engine engine = new Engine(); |
| 60 | Assert.assertEquals(1563505, engine.countAllMoves(board, 5)); |
| 61 | } |
| 62 | |
| 63 | @Test |
| 64 | public void countMovesAtPosition32() { |
nothing calls this directly
no test coverage detected