public void SetUp()
        {
            boardGenerator = new EmptyBoardGeneratorService();
            board          = boardGenerator.GenerateEmptyBoard(Constants.BoardRows,
                                                               Constants.BoardCols);

            //This is a very stupid way but it works for now
            this.service = new CheckmateService(new ChessRulesService());
        }