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

Method countMovesAtPosition34

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

Source from the content-addressed store, hash-verified

95
96
97 @Test
98 public void countMovesAtPosition34() {
99 Board board = Board.getBoard("8/2K5/3p4/1P3k1r/1R3p2/8/4P1P1/8 b - -");
100 System.out.println(board);
101 Engine engine = new Engine();
102 Assert.assertEquals(318, engine.countAllMoves(board, 2));
103 }
104
105 @Test
106 public void countMovesAtPosition35() {

Callers

nothing calls this directly

Calls 2

getBoardMethod · 0.95
countAllMovesMethod · 0.95

Tested by

no test coverage detected