CQRS.Tests.CQRS.EventSourcing.EventRefactoring.Migrations.EventStreamMutatorTests.Base_class_method_should_detect_incorrect_type_order C# (CSharp) Метод

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

private Base_class_method_should_detect_incorrect_type_order ( ) : void
Результат void
        public void Base_class_method_should_detect_incorrect_type_order()
        {
            this.Invoking(
                _ => RunMigrationTest(
                    new MigrationScenario(
                        Seq.OfTypes<Ec1, E1, Ef, Ef>(),
                        Seq.OfTypes<Ec1, Ef, E2, Ef>())))
                .ShouldThrow<Exception>();
        }