From 95f75aa7aacf5e0e1ef11e8d200f84de44bd891f Mon Sep 17 00:00:00 2001 From: zedarider Date: Thu, 10 Nov 2016 18:19:22 +0000 Subject: finished the tester --- src/main.cpp | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 81485f3..def5cf0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -8,6 +8,7 @@ */ #include "../include/chess_ai.hpp" +#include "../include/chess_tester.hpp" #include @@ -17,24 +18,6 @@ using namespace chess_ai; int main(int argc, char** argv) { (void)argc; (void)argv; - - chess_board board(initial); - board.print_board(); - - chess_piece piece(rook, white, 5, 3); - board.set_piece(piece); - - board.print_board(); - - board.remove_piece(5, 3); - - board.print_board(); - - board.move_piece(4, 6, 4, 4); - board.move_piece(4, 1, 4, 3); - board.move_piece(3, 6, 3, 5); - - board.print_board(); return 0; } -- cgit