CloudinaryDotNet.Test.ApiTest.TestSupportUrlSuffixForPrivateCdn C# (CSharp) Méthode

TestSupportUrlSuffixForPrivateCdn() private méthode

private TestSupportUrlSuffixForPrivateCdn ( ) : void
Résultat void
        public void TestSupportUrlSuffixForPrivateCdn()
        {
            string actual = m_api.UrlImgUp.Suffix("hello").PrivateCdn(true).BuildUrl("test");
            Assert.AreEqual("http://testcloud-res.cloudinary.com/images/test/hello", actual);

            actual = m_api.UrlImgUp.Suffix("hello").PrivateCdn(true).Transform(new Transformation().Angle(0)).BuildUrl("test");
            Assert.AreEqual("http://testcloud-res.cloudinary.com/images/a_0/test/hello", actual);
        }
ApiTest