Arc.Unit.Tests.Infrastructure.Dependencies.StaticServiceLocatorTests.Should_delegate_resolve_with_parameters C# (CSharp) Метод

Should_delegate_resolve_with_parameters() приватный Метод

private Should_delegate_resolve_with_parameters ( ) : void
Результат void
        public void Should_delegate_resolve_with_parameters()
        {
            var parameters = With.Parameters.ConstructorArgument(string.Empty, null);
            ServiceLocator.Resolve(typeof(IRepository<IEntity>), parameters);

            _locator.AssertWasCalled(x => x.Resolve(typeof(IRepository<IEntity>), parameters));
        }