Ejemplo n.º 1
0
 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");
 }
Ejemplo n.º 2
0
 public void StatusConstructorTest1()
 {
     Status target = new Status();
     Assert.IsNull(target.Value,  "Object value should be null after construction");
 }