namespace Aspose.Cells.Cloud.SDK.Tests.Api.Example
{
    using Microsoft.VisualStudio.TestTools.UnitTesting;
    using Aspose.Cells.Cloud.SDK.Request;
    using System.Collections.Generic;
    using Aspose.Cells.Cloud.SDK.Api;
    using System;
    using System.IO;

    [TestClass]
    public class CellsApiExample
    {
          CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"));

        [TestCategory("Cells")]
        [TestMethod]
        public void Example()
        {

            var request = new CopyFileRequest(
            srcPath: "TestData/In/Book1.xlsx",
            destPath: "OutResult/Book1.xlsx"
        );
            cellsApi.CopyFile(request);
        }


    }
}