Akka.Tests.Actor.HotSwapSpec.Must_be_able_to_become_with_stacking_multiple_times_in_its_constructor C# (CSharp) Метод

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

        public void Must_be_able_to_become_with_stacking_multiple_times_in_its_constructor() {
            var a = Sys.ActorOf<MultipleStackingConstructorBecomer>();

            a.Tell("pigdog");
            a.Tell("pigdog");
            a.Tell("pigdog");
            a.Tell("pigdog");
            ExpectMsg("4:pigdog");
            ExpectMsg("3:pigdog");
            ExpectMsg("2:pigdog");
            ExpectMsg("1:pigdog");
        }