We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1da07f2 commit 7e82b2aCopy full SHA for 7e82b2a
lib/chesskt/src/commonTest/kotlin/com/krossovochkin/chesskt/perft/PerftTest.kt
@@ -63,14 +63,6 @@ class PerftTest {
63
)
64
}
65
66
- @Test
67
- fun test() {
68
- val moves = Game.create("rnbq1k1r/pp1Pbppp/2p5/8/2B5/8/PPP1NnPP/RNBQK2R w KQ - 1 8")!!
69
- .availableMoves("d7".asSquare())
70
- println(moves)
71
- assertEquals(4, moves.size)
72
- }
73
-
74
@Test
75
fun position6() {
76
test(
@@ -97,4 +89,4 @@ class PerftTest {
97
89
assertEquals(castlesCount, moves.count { it is Move.CastleMove }, "castles count not match")
98
90
assertEquals(promotionsCount, moves.count { it is Move.PromotionMove }, "promotions count not match")
99
91
100
-}
92
+}
0 commit comments