Exemplo n.º 1
0
 public void ReturnsFalse_WhenInputIsInvalid(string input) =>
 FinancialReport.TryParseMonthsInReport(input, out var _).Should().BeFalse();
Exemplo n.º 2
0
 public void ReturnsTrue_WhenInputIsValid(string input, int expected)
 {
     FinancialReport.TryParseMonthsInReport(input, out var result).Should().BeTrue();
     result.Should().Be(expected);
 }