Example #1
0
 public void OccupationConstructorTest()
 {
     string initValue = "secret test string";
     Occupation target = new Occupation(initValue);
     Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction");
 }
Example #2
0
 public void OccupationConstructorTest1()
 {
     Occupation target = new Occupation();
     Assert.IsNull(target.Value,  "Object value should be null after construction");
 }