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

DeleteSection() private method

private DeleteSection ( ) : void
return void
        public void DeleteSection()
        {
            using (var tester = new IniFileTester(ValidSection1))
            {
                tester.TestFile.DeleteSection("section");
                Assert.IsFalse(tester.TestFile.SectionExists("section"));
                tester.TestFile.Persist();
                tester.AssertFileContents(String.Empty);
            }
        }