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

TestImageTagParams() private method

private TestImageTagParams ( ) : void
return void
        public void TestImageTagParams()
        {
            Transformation transformation = new Transformation().Width(100).Height(101).Crop("crop");

            var result = m_api.UrlImgUp.Transform(transformation).BuildImageTag("test", "alt=my image name \"TestImg\"", "test=My image name is 'Test2'").ToString();
            Assert.AreEqual("<img src=\"http://res.cloudinary.com/testcloud/image/upload/c_crop,h_101,w_100/test\" alt=\"my image name &quot;TestImg&quot;\" test=\"My image name is &#39;Test2&#39;\" width=\"100\" height=\"101\"/>", result);
        }
ApiTest