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

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

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

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