summaryrefslogtreecommitdiff
path: root/src/engine/moves
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/moves')
-rw-r--r--src/engine/moves/king.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/engine/moves/king.c b/src/engine/moves/king.c
index b2fea9e..9ce3eb8 100644
--- a/src/engine/moves/king.c
+++ b/src/engine/moves/king.c
@@ -34,19 +34,3 @@ void get_king_moves(moves_t* moves, position_t position) {
add_move(moves, king_square, to);
}
}
-
-#ifdef TEST_MOD
-#include <stdbool.h>
-#include "../bitboard.c"
-#include "./vec.c"
-
-bool test_empty_board() {
- int i = 0;
- while (i++ < 1000000000);
- return true;
-}
-
-bool test_friendly_pieces() {
- return false;
-}
-#endif