public void LocationConstructorTest() { string initValue = "secret test string"; Location target = new Location(initValue); Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction"); }
public void LocationConstructorTest1() { Location target = new Location(); Assert.IsNull(target.Value, "Object value should be null after construction"); }