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

TestShortenUrl() private method

private TestShortenUrl ( ) : void
return void
        public void TestShortenUrl()
        {
            // should allow to shorted image/upload urls

            string result = m_api.UrlImgUp.Shorten(true).BuildUrl("test");
            Assert.AreEqual(m_defaultRootPath + "iu/test", result);
        }
ApiTest