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

Inserting_E2_Before_E1() private method

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