Arc.Integration.Tests.Infrastructure.Dependencies.AutoRegistrationTests.Picking_example C# (CSharp) Méthode

Picking_example() private méthode

private Picking_example ( ) : void
Résultat void
        public void Picking_example()
        {
            var configuration = AutoRegistration.For("Arc.Integration.Tests")
                .Pick(x => x.Namespace.Contains("Arc.Integration.Tests.Fakes"))
                .BindToFirstInterface();

            SetupConfiguration(configuration);
            Assert.That(_serviceLocator.Resolve<IService>(), Is.Not.Null);
        }