Exemplo n.º 1
0
 public void MusicConstructorTest()
 {
     string initValue = "secret test string";
     Music target = new Music(initValue);
     Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction");
 }
Exemplo n.º 2
0
 public void MusicConstructorTest1()
 {
     Music target = new Music();
     Assert.IsNull(target.Value,  "Object value should be null after construction");
 }