Ejemplo n.º 1
0
        public void Exporting()
        {
            int[,] matrix = { { 1, 2 }, { 3, 5 } };
            var bytes = _mo.Export(matrix);

            CollectionAssert.AllItemsAreNotNull(bytes);
        }