Arc.Integration.Tests.Infrastructure.Dependencies.AutoRegistrationTests.Picking_example C# (CSharp) Method

Picking_example() private method

private Picking_example ( ) : void
return 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);
        }