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