Cloudinary.Tests.ChainedTransformationTests.ToCloudinary_WithTwoTransformations_CombinesThem C# (CSharp) Метод

ToCloudinary_WithTwoTransformations_CombinesThem() приватный Метод

private ToCloudinary_WithTwoTransformations_CombinesThem ( ) : void
Результат void
        public void ToCloudinary_WithTwoTransformations_CombinesThem()
        {
            var first = new Transformation(20, 40) { Angle = new Angle(40)};
            var second = new TransformationBase
                             {
                                 Effect = "sepia"
                             };

            var chained = new ChainedTransformation(first, second);

            Assert.AreEqual("w_20,h_40,a_40/e_sepia", chained.ToCloudinary());
        }