Akka.Tests.Actor.StashMailboxSpec.When_creating_normal_actor_Then_a_normal_mailbox_is_created C# (CSharp) Method

When_creating_normal_actor_Then_a_normal_mailbox_is_created() private method

        public void When_creating_normal_actor_Then_a_normal_mailbox_is_created()
        {
            var actorRef = ActorOf<BlackHoleActor>();
            var intRef = (LocalActorRef)actorRef;
            intRef.Cell.Mailbox.GetType().ShouldBe(typeof(UnboundedMailbox));
        }