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

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

private GetFormat_WithTwoTransformations_ReturnsFirstFormat ( ) : void
Результат void
        public void GetFormat_WithTwoTransformations_ReturnsFirstFormat()
        {
            var first = new TransformationBase()
                            {
                                Format = "gif"
                            };

            var second = new Transformation(20, 30)
                             {
                                 Format = "png"
                             };

            var chained = new ChainedTransformation(first, second);

            Assert.That(chained.GetFormat() == "gif");
        }