Appccelerate.Bootstrapper.Configuration.ExtensionConfigurationSectionBehaviorTest.Behave_ShouldAcquireSectionByName C# (CSharp) Method

Behave_ShouldAcquireSectionByName() private method

private Behave_ShouldAcquireSectionByName ( ) : void
return void
        public void Behave_ShouldAcquireSectionByName()
        {
            this.SetupEmptyConsumerConfiguration();

            const string AnySectionName = "SectionName";

            this.sectionNameProvider.Setup(p => p.SectionName).Returns(AnySectionName);

            this.testee.Behave(this.extensions);

            this.sectionProvider.Verify(p => p.GetSection(AnySectionName));
        }