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