Cloudinary.Tests.TransformationExtensionsTests.Chain_WithTwoNormalTransformations_CreatesChainedTransformation C# (CSharp) Метод

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

private Chain_WithTwoNormalTransformations_CreatesChainedTransformation ( ) : void
Результат void
        public void Chain_WithTwoNormalTransformations_CreatesChainedTransformation()
        {
            var first = new TransformationBase();
            var second = new TransformationBase();

            var chained = first.Chain(second);

            Assert.That(chained is ChainedTransformation);
        }