MCPcopy Index your code
hub / github.com/coding-parrot/chess-engine / queenToEdge

Method queenToEdge

src/test/java/EngineTest.java:154–162  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 2

getBoardMethod · 0.95
countAllMovesMethod · 0.95

Tested by

no test coverage detected