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

Should_delegate_resolve_with_generics_and_parameters() private method

        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));
        }