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

TestEffectWithParam() private method

private TestEffectWithParam ( ) : void
return void
        public void TestEffectWithParam()
        {
            // should support effect with param
            Transformation transformation = new Transformation().Effect("sepia", 10);
            String result = m_api.UrlImgUp.Transform(transformation).BuildUrl("test");
            Assert.AreEqual(m_defaultImgUpPath + "e_sepia:10/test", result);
        }
ApiTest