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

TestFetchFormat() private method

private TestFetchFormat ( ) : void
return 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