Arc.Integration.Tests.Infrastructure.Dependencies.AutoRegistrationTests.Binding_to_self_example C# (CSharp) 메소드

Binding_to_self_example() 개인적인 메소드

private Binding_to_self_example ( ) : void
리턴 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);
        }