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