ApplicationSettingsTests.WriteIntoInstanceTests.When_IgnoreAttribute_is_defined.Then_property_is_ignored C# (CSharp) 메소드

Then_property_is_ignored() 개인적인 메소드

private Then_property_is_ignored ( ) : void
리턴 void
        public void Then_property_is_ignored()
        {
            var settings = new AppSettings(SimpleConfig.AbsolutePathToConfigFile);
            var mySettings = new SettingsWithIgnoredProperty(100);

            settings.WriteInto(mySettings);

            Assert.AreEqual(100, mySettings.IntValue);
        }