CQRS.Tests.CQRS.EventSourcing.EventRefactoring.Migrations.EventStreamMutatorTests.Replacing_E1_with_E2_E3_then_E2_with_E4 C# (CSharp) Метод

Replacing_E1_with_E2_E3_then_E2_with_E4() приватный Метод

private Replacing_E1_with_E2_E3_then_E2_with_E4 ( ) : void
Результат void
        public void Replacing_E1_with_E2_E3_then_E2_with_E4()
        {
            RunMigrationTest(new MigrationScenario(
            Seq.OfTypes<Ec1, E1, Ef>(),
            Seq.OfTypes<Ec1, E4, E3, Ef>(),
            Replace<E1>.With<E2, E3>(),//Ec1, E2, E3, Ef
            Replace<E2>.With<E4>())); //Ec1, E4, E3, Ef
        }