aboutsummaryrefslogtreecommitdiffstats
path: root/src/test_bench.cpp
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2017-01-17 15:42:18 +0000
committerzedarider <ymherklotz@gmail.com>2017-01-17 15:42:18 +0000
commitf0799aef3ff8c4a8e8ffea79c963b8f128c462b9 (patch)
treeef496e7326148dd29d555eb017155fcb7af234f8 /src/test_bench.cpp
parent088b948122cbf24dd9dc1dfedf4be2724bab2157 (diff)
downloadChessAI-f0799aef3ff8c4a8e8ffea79c963b8f128c462b9.tar.gz
ChessAI-f0799aef3ff8c4a8e8ffea79c963b8f128c462b9.zip
fixed the chess board and added empty pieces to fill holes, also added forward declarations
Diffstat (limited to 'src/test_bench.cpp')
-rw-r--r--src/test_bench.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test_bench.cpp b/src/test_bench.cpp
index a68b60c..b1fe4ba 100644
--- a/src/test_bench.cpp
+++ b/src/test_bench.cpp
@@ -25,6 +25,10 @@ int main(int argc, char **argv) {
cout << "Program name: " << argv[0] << endl;
cout << "Arguments: " << argc - 1 << endl;
+ ChessBoard cb;
+ cb.populateBoard();
+ cb.printBoard();
+
cout << endl << "====== Executed Successfully ======" << endl;
return 0;