// 4/ 35 -- -- -- -- -- -- -- -- (20 rolls: one spare, (3+5)=8  and 8 pairs of miss) = 10 + 3 + (3+5) points = 21
 public void Spare()
 {
     game.Spare(4, 6);
     game.OpenFrame(3, 5);
     ManyOpenFrames(8, 0, 0);
     Assert.AreEqual(21, game.Score());
 }
Example #2
0
 public void Spare()
 {
     game.Spare(4, 6);
     //6+4=10 + 1st next throw i.e. 3
     //13
     game.OpenFrame(3, 5);
     //13+8 = 21
     ManyOpenFrames(8, 0, 0);
     Assert.AreEqual(21, game.Score());
 }