CloudinaryDotNet.Test.CloudinaryTest.TestUploadLarge C# (CSharp) Method

TestUploadLarge() private method

private TestUploadLarge ( ) : void
return void
        public void TestUploadLarge()
        {
            // support uploading large image

            var largeFilePath = m_testLargeImagePath;
            int fileLength = (int)new FileInfo(largeFilePath).Length;
            var result = m_cloudinary.UploadLarge(new ImageUploadParams()
            {
                File = new FileDescription(largeFilePath)
            }, 5 * 1024 * 1024);

            Assert.AreEqual(fileLength, result.Length);
        }
CloudinaryTest