From 1f138d96ab7f517e7842710ef3428f67a2965877 Mon Sep 17 00:00:00 2001 From: ymherklotz Date: Sun, 15 Jan 2017 19:44:15 +0000 Subject: creating the board --- src/test_bench.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/test_bench.cpp') diff --git a/src/test_bench.cpp b/src/test_bench.cpp index 474c53b..ab23d6c 100644 --- a/src/test_bench.cpp +++ b/src/test_bench.cpp @@ -3,6 +3,7 @@ * author: Yann Herklotz * username: ymherklotz * email: ymherklotz@gmail.com + * date created: 13/01/17 * * ----------------------------------------------------------------------------- * @@ -12,6 +13,7 @@ #include "chess_tester.hpp" #include "chess_piece.hpp" +#include "chess_board.hpp" #include @@ -22,6 +24,10 @@ int main(int argc, char **argv) { cout << "Program name: " << argv[0] << endl; cout << "Arguments: " << argc - 1 << endl; + ChessBoard cb; + + cb.printBoard(); + cout << endl << "====== Executed Successfully ======" << endl; return 0; -- cgit