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

TestDifferentHtmlDimensions() private method

private TestDifferentHtmlDimensions ( ) : void
return void
        public void TestDifferentHtmlDimensions()
        {
            var trans = new Transformation().Width(100).Height(101).SetHtmlWidth(50).SetHtmlHeight(51);
            var tag = m_api.UrlImgUp.Transform(trans).BuildImageTag("test").ToString();
            Assert.AreEqual("<img src=\"http://res.cloudinary.com/testcloud/image/upload/h_101,w_100/test\" width=\"50\" height=\"51\"/>", tag);
        }
ApiTest