CloudinaryDotNet.Test.ApiTest.TestSupportUrlSuffixForRawUploads C# (CSharp) Method

TestSupportUrlSuffixForRawUploads() private method

private TestSupportUrlSuffixForRawUploads ( ) : void
return void
        public void TestSupportUrlSuffixForRawUploads()
        {
            string actual = m_api.UrlImgUp.Suffix("hello").PrivateCdn(true).ResourceType("raw").BuildUrl("test");
            Assert.AreEqual("http://testcloud-res.cloudinary.com/files/test/hello", actual);
        }
ApiTest