()
| 61 | } |
| 62 | |
| 63 | @Test |
| 64 | public void countMovesAtPosition32() { |
| 65 | Board board = Board.getBoard("8/1Kp5/3p4/1P4kr/1R3p2/8/4P1P1/8 b - -"); |
| 66 | System.out.println(board); |
| 67 | Engine engine = new Engine(); |
| 68 | Assert.assertEquals(129425, engine.countAllMoves(board, 4)); |
| 69 | } |
| 70 | |
| 71 | @Test |
| 72 | public void countMovesAtPosition33() { |
nothing calls this directly
no test coverage detected