Ejemplo n.º 1
0
 public void testIsScoredBadName()
 {
     ScoreSheet scoreSheet = new ScoreSheet();
     scoreSheet.setupGame("Yahtzee");
     scoreSheet.isScored("Bad Category");
 }
Ejemplo n.º 2
0
 public void testIsScored()
 {
     ScoreSheet scoreSheet = new ScoreSheet();
     scoreSheet.setupGame("Yahtzee");
     Assert.AreEqual(false, scoreSheet.isScored("Aces"));
     scoreSheet.Score("Aces", new DieSet(1, 1, 1, 1, 1));
     Assert.AreEqual(true, scoreSheet.isScored("Aces"));
 }