()
| 152 | } |
| 153 | |
| 154 | @Test |
| 155 | public void queenToEdge() { |
| 156 | Board board = Board.getBoard("r3k2r/p1ppqpb1/bn2pnp1/3PN2Q/1p2P3/2N4p/PPPBBPPP/R3K2R b KQkq -"); |
| 157 | System.out.println(board); |
| 158 | Engine engine = new Engine(); |
| 159 | final int positions = engine.countAllMoves(board, 3); |
| 160 | System.out.println("NUMBER OF POSITIONS: " + positions); |
| 161 | Assert.assertEquals(95034, positions); |
| 162 | } |
| 163 | |
| 164 | @Test |
| 165 | public void queenToDeath() { |
nothing calls this directly
no test coverage detected