public void ThrowExceptionOutOfRange(Decimal input)
 {
     Assert.Throws<ArgumentOutOfRangeException>(() =>
     {
         input.FormatAsTime();
     });
 }
 public string CorrectResult(Decimal input)
 {
     return input.FormatAsTime();
 }