Arc.Unit.Tests.Infrastructure.Dependencies.StaticServiceLocatorTests.Should_delegate_register C# (CSharp) Méthode

Should_delegate_register() private méthode

private Should_delegate_register ( ) : void
Résultat void
        public void Should_delegate_register()
        {
            var registrations = Requested.Service<IRepository<IEntity>>().IsImplementedBy<Repository<IEntity>>();
            ServiceLocator.Register(registrations);

            _locator.AssertWasCalled(x => x.Register(registrations));
        }