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"); }
public void MusicConstructorTest1() { Music target = new Music(); Assert.IsNull(target.Value, "Object value should be null after construction"); }