Arc.Unit.Tests.Infrastructure.Dependencies.StaticServiceLocatorTests.Should_delegate_load_with_dependency_configuration C# (CSharp) Method

Should_delegate_load_with_dependency_configuration() private method

        public void Should_delegate_load_with_dependency_configuration()
        {
            var configuration = MockRepository.GenerateStub<IConfiguration<IServiceLocator>>();

            ServiceLocator.Load(configuration);

            _locator.AssertWasCalled(x => x.Load(configuration));
        }