AWSSDK.UnitTests.IniFileTest.SectionExistsFalse C# (CSharp) Method

SectionExistsFalse() private method

private SectionExistsFalse ( ) : void
return void
        public void SectionExistsFalse()
        {
            using (var tester = new IniFileTester(ValidSection1))
            {
                Assert.IsFalse(tester.TestFile.SectionExists("blah"));
            }
        }