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

Inserting_E2_before_E1_then_E3_before_E2() private method

private Inserting_E2_before_E1_then_E3_before_E2 ( ) : void
return void
        public void Inserting_E2_before_E1_then_E3_before_E2()
        {
            RunMigrationTest(new MigrationScenario(
            Seq.OfTypes<Ec1, E1, Ef>(),
            Seq.OfTypes<Ec1, E3, E2, E1, Ef>(),
            Before<E1>.Insert<E2>(),
            Before<E2>.Insert<E3>()));
        }