Akka.Interfaced.Tests.ExceptionAtStartStopTest.ExceptionThrown_At_MessageHandle C# (CSharp) Method

ExceptionThrown_At_MessageHandle() private method

private ExceptionThrown_At_MessageHandle ( ) : void
return void
        public void ExceptionThrown_At_MessageHandle()
        {
            var log = new LogBoard<string>();
            var actor = ActorOf(Props.Create(() => new TestExceptionActor(log, null)));

            actor.Tell("E");

            Watch(actor);
            ExpectTerminated(actor);
            Assert.Equal(
                new[]
                {
                    "ctor",
                    "PreStart",
                    "OnStart",
                    "OnStart Done",
                    "Handle(E)",
                    "PostStop"
                },
                log);
        }
    }