public void EmptyConfigs()
        {
            project.AddConfig("Debug");
            project.AddConfig("Release");
            project.ActiveConfigName               = "Debug";
            project.Configs["Debug"].BinPathType   = BinPathType.Auto;
            project.Configs["Release"].BinPathType = BinPathType.Auto;

            CheckContents(NUnitProjectXml.EmptyConfigs);
        }
예제 #2
0
 public void SaveMakesProjectNotDirty()
 {
     project.AddConfig("Debug");
     doc.Save(xmlfile);
     Assert.IsFalse(doc.HasUnsavedChanges);
 }