Пример #1
0
 public void TestPlayMixGoesAheadWhenItCan()
 {
     Artist artist = new Artist() { Name = TestName };
     artist.PlayMix();
     Assert.Pass();
 }
Пример #2
0
 public void TestAristNamePropertyIsRequiredForPlayMix()
 {
     Artist artist = new Artist();
     artist.PlayMix();
 }