예제 #1
0
 public void SetIsNoted()
 {
     TweakConfig config = new TweakConfig();
       config.GetPropertyValue("test", 5);
       config.SetPropertyValue("test", 6);
       Assert.AreEqual(6, config.GetPropertyValue("test", 4));
 }
예제 #2
0
 public void CannotSetNonExistentVariable()
 {
     TweakConfig config = new TweakConfig();
       config.SetPropertyValue("test", 5);
 }