コード例 #1
0
 public void UndoSchlagTest()
 {
     _scorecard.ErhoeheAnzahlSchlaege();
     Assert.AreEqual(_scorecard.AnzahlSchlaegeAktuellesLoch, 1);
     Assert.AreEqual(_scorecard.Lochnummer, 1);
     _scorecard.Undo();
     Assert.AreEqual(_scorecard.AnzahlSchlaegeAktuellesLoch, 0);
     Assert.AreEqual(_scorecard.Lochnummer, 1);
 }
コード例 #2
0
 public string FuehreAus(Scorecard scorecard)
 {
     scorecard.Undo();
     return("");
 }