示例#1
0
 public void RelationshipConstructorTest()
 {
     string initValue = "secret test string";
     Relationship target = new Relationship(initValue);
     Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction");
 }
示例#2
0
 public void RelationshipConstructorTest1()
 {
     Relationship target = new Relationship();
     Assert.IsNull(target.Value,  "Object value should be null after construction");
 }