public void LoadIntoCurrentProjectTest() { MapWindow.Interfaces.Project target = new MapWindow.Project(); // TODO: Initialize to an appropriate value string Filename = string.Empty; // TODO: Initialize to an appropriate value target.LoadIntoCurrentProject(Filename); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void SaveShapeSettingsTest() { MapWindow.Interfaces.Project target = new MapWindow.Project(); // TODO: Initialize to an appropriate value bool expected = false; // TODO: Initialize to an appropriate value bool actual; target.SaveShapeSettings = expected; actual = target.SaveShapeSettings; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }