CloudinaryDotNet.Test.ApiTest.LiteralWithSpaces C# (CSharp) Méthode

LiteralWithSpaces() private méthode

private LiteralWithSpaces ( ) : void
Résultat 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