Akka.Tests.Actor.DeathWatchSpec.DeathWatch_must_notify_with_one_Terminated_message_when_an_Actor_is_already_terminated C# (CSharp) Метод

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

        public void DeathWatch_must_notify_with_one_Terminated_message_when_an_Actor_is_already_terminated()
        {
            var terminal = Sys.ActorOf(Props.Empty, "killed-actor");
            terminal.Tell(PoisonPill.Instance, TestActor);
            StartWatching(terminal);
            ExpectTerminationOf(terminal);
        }