public void Parse_IncorrectString_ExceptionThrown(
     string str)
 {
     CustomIntParser.Parse(str);
 }
 public void Parse_CorrectString_ExpectedResult(
     string str, int number)
 {
     Assert.AreEqual(number, CustomIntParser.Parse(str));
 }