public void Test07() { SchuhBand band = new SchuhBand(18d, "schwarz", 18); band.checkColor("irgendwas"); Assert.IsTrue(band.Farbe == "Rosa"); }
public void Test06() { SchuhBand band = new SchuhBand(18d, "gelb", 18); band.GetGroesse(38); Assert.IsTrue(band.Laenge == 18); }