CloudinaryDotNet.Test.ApiTest.TestFetchFormat C# (CSharp) 메소드

TestFetchFormat() 개인적인 메소드

private TestFetchFormat ( ) : void
리턴 void
        public void TestFetchFormat()
        {
            // should support format for fetch urls
            String result = m_api.UrlImgUp.Format("jpg").Action("fetch").BuildUrl("http://cloudinary.com/images/logo.png");
            Assert.AreEqual(m_defaultRootPath + "image/fetch/f_jpg/http://cloudinary.com/images/logo.png", result);
        }
ApiTest