Ejemplo n.º 1
0
 public void TestRoundAddDownPins()
 {
     BowlingGameRound frame = new BowlingGameRound();
     frame.AddDownPins(4);
     frame.AddDownPins(5);
     Assert.AreEqual(9 , frame.Score);
 }
Ejemplo n.º 2
0
 public void SetUp()
 {
     _bowlingGame = new BowlingGameRound();
 }
Ejemplo n.º 3
0
 public void TestRoundScore()
 {
     BowlingGameRound frame = new BowlingGameRound();
     Assert.AreEqual(0, frame.Score);
 }