Example #1
0
 public void ThrowExceptionWhenTriedTooManyTimes(int guessCount)
 {
     if (guessCount > 60)
     {
         throw new Exception(GameInstruction.TooMoreTriesMessage());
     }
 }