Akka.Tests.Actor.RootGuardianActorRef_Tests.Path_Should_be_the_same_path_as_specified C# (CSharp) Method

Path_Should_be_the_same_path_as_specified() private method

private Path_Should_be_the_same_path_as_specified ( ) : void
return void
        public void Path_Should_be_the_same_path_as_specified()
        {
            var props = Props.Create<GuardianActor>(new OneForOneStrategy(e => Directive.Stop));
            var rootGuardianActorRef = new RootGuardianActorRef((ActorSystemImpl) Sys, props, _dispatcher, () => Sys.Mailboxes.CreateMailbox(props,null), ActorRefs.Nobody, _rootActorPath, _deadLetters, _emptyExtraNames);
            Assert.Equal(_rootActorPath, rootGuardianActorRef.Path);
        }