CQRS.Tests.CQRS.EventSourcing.EventRefactoring.Migrations.EventStreamMutatorTests.Given_Ec1_E1_Inserting_E3_E2_before_E1_then_E4_before_E3 C# (CSharp) Method

Given_Ec1_E1_Inserting_E3_E2_before_E1_then_E4_before_E3() private method

        public void Given_Ec1_E1_Inserting_E3_E2_before_E1_then_E4_before_E3()
        {
            RunMigrationTest(new MigrationScenario(
            Seq.OfTypes<Ec1, E1>(),
            Seq.OfTypes<Ec1, E5, E4, E3, E2, E1>(),
            Before<E1>.Insert<E3, E2>(), //Ec1, E3, E2, E1
            Before<E3>.Insert<E4>(),
            Before<E4>.Insert<E5>())); //Ec1, E4, E3, E2, E1
        }