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

ExceptionThrown_At_PreStart() private method

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

            actor.Tell("");

            Watch(actor);
            ExpectTerminated(actor);
            Assert.Equal(
                new[]
                {
                    "ctor",
                    "PreStart",
                },
                log);
        }