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

Inserting_E2_after_E1() private method

private Inserting_E2_after_E1 ( ) : void
return void
        public void Inserting_E2_after_E1()
        {
            RunMigrationTest(new MigrationScenario(
            Seq.OfTypes<Ec1, E1, Ef, Ef>(),
            Seq.OfTypes<Ec1, E1, E2, Ef, Ef>(),
            After<E1>.Insert<E2>()));

        }