public void TestAristNamePropertyIsRequiredForShow() { Artist artist = new Artist(); artist.Show(); }
public void TestShowGoesAheadWhenItCan() { Artist artist = new Artist() { Id = TestId }; artist.Show(); Assert.Pass(); }