Example #1
0
 public void ThrowExceptionWhenInputLengthIsNotFour(string selection)
 {
     if (selection.Length != 4)
     {
         throw new Exception(GameInstruction.InvalidInputLengthMessage());
     }
 }