AWSSDK.UnitTests.IniFileTest.DeleteSection C# (CSharp) Méthode

DeleteSection() private méthode

private DeleteSection ( ) : void
Résultat 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);
            }
        }