Arc.Unit.Tests.Infrastructure.Utilities.ResolveProviderTests.Should_resolve_provider_by_type C# (CSharp) Метод

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

private Should_resolve_provider_by_type ( ) : void
Результат void
        public void Should_resolve_provider_by_type()
        {
            var actual = ResolveProvider<IService>.WithRealType(typeof(ServiceImpl));

            Assert.That(actual, Is.Not.Null);
            Assert.That(actual, Is.InstanceOfType(typeof(IService)));
        }