CloudinaryDotNet.Test.ApiTest.LiteralWithSpaces C# (CSharp) 메소드

LiteralWithSpaces() 개인적인 메소드

private LiteralWithSpaces ( ) : void
리턴 void
        public void LiteralWithSpaces()
        {
            Transformation transformation = new Transformation().IfCondition("w < 200").Crop("fill").Height(120).Width(80);
            string sTransform = transformation.ToString();
            Assert.AreEqual("if_w_lt_200,c_fill,h_120,w_80", sTransform, "should translate operators");
        }
ApiTest