AWSSDK.UnitTests.IniFileTest.EnsureSectionExists_New C# (CSharp) 메소드

EnsureSectionExists_New() 개인적인 메소드

private EnsureSectionExists_New ( ) : void
리턴 void
        public void EnsureSectionExists_New()
        {
            using (var tester = new IniFileTester(ValidSection1))
            {
                tester.TestFile.EnsureSectionExists("section2");
                tester.AssertSection("section2");
                tester.TestFile.Persist();
                tester.AssertFileContents(ValidSection1 + "[section2]");
            }
        }