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

TestUploadCustom() private method

private TestUploadCustom ( ) : void
return void
        public void TestUploadCustom()
        {
            var file = new FileDescription(m_testVideoPath);

            var uploadResult = m_cloudinary.Upload("video", null, file);

            Assert.NotNull(uploadResult);
            Assert.AreEqual("video", uploadResult.ResourceType);
        }
CloudinaryTest