public void Bad_Name_Should_be_on_SL() { Sanktionsliste SL = new Sanktionsliste(); Assert.IsTrue(SL.is_on("Böser Name")); }
public void Good_Name_Should_not_be_on_SL() { Sanktionsliste SL = new Sanktionsliste(); Assert.IsFalse(SL.is_on("Guter Name")); }
public void epty_name_should_throw_exception() { Sanktionsliste SL = new Sanktionsliste(); SL.is_on(""); }
public Debitor(string name) { this.name = name; this.SL = new Sanktionsliste(); }