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

Binding_to_self_example() private method

private Binding_to_self_example ( ) : void
return void
        public void Binding_to_self_example()
        {
            var configuration = AutoRegistration.For("Arc.Integration.Tests")
                .AllConcreteTypes
                .BindToSelf();

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