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