public void PlaceChess()
        {
            var offset = new DirectionOffset(10);
            var table  = new AdjacentInfoTable(100, offset);

            table.PlaceChessPiece(22, Player.Opponent);
            table.PlaceChessPiece(33, Player.Opponent);
            var opponentTable = table.Opponent;

            Assert.Equal(2, opponentTable[11, Direction.MainDiagonal]);
            Assert.Equal(1, opponentTable[23, Direction.Horizontal.O]);
            Assert.Equal(0, opponentTable[23, Direction.Horizontal]);

            Assert.Equal(0, table.Own[11, Direction.MainDiagonal]);
        }
        public void ExactFiveWinner()
        {
            var board = new Player[100];

            board[22] = board[33] = board[44] = board[55] = board[77] = Player.Own;
            var offset = new DirectionOffset(10);
            var table  = new AdjacentInfoTable(board, offset)
            {
                ExactFive = true
            };

            table.PlaceChessPiece(66, Player.Own);

            Assert.Equal(Player.Empty, table.Winner);
        }