CQRS.Tests.CQRS.EventSourcing.EventRefactoring.Migrations.EventStreamMutatorTests.Inserting_E2_after_E1_at_end_of_stream C# (CSharp) Méthode

Inserting_E2_after_E1_at_end_of_stream() private méthode

private Inserting_E2_after_E1_at_end_of_stream ( ) : void
Résultat void
        public void Inserting_E2_after_E1_at_end_of_stream()
        {
            RunMigrationTest(new MigrationScenario(
            Seq.OfTypes<Ec1, E1>(),
            Seq.OfTypes<Ec1, E1, E2>(),
            After<E1>.Insert<E2>()));
        }