Exemplo n.º 1
0
 public void TestAristNamePropertyIsRequiredForShow()
 {
     Artist artist = new Artist();
     artist.Show();
 }
Exemplo n.º 2
0
 public void TestShowGoesAheadWhenItCan()
 {
     Artist artist = new Artist() { Id = TestId };
     artist.Show();
     Assert.Pass();
 }