Files

16 lines
401 B
C#
Raw Permalink Normal View History

2023-12-06 20:21:11 -06:00
namespace WaitForIt.Tests;
public class ProgramTests
{
public void Main_WhenGivenInput_ItShouldReturnTheProductOfTheMarginOfErrors()
{
var result = Program.Main(["INPUT.txt"]);
result.Should().Be(1710720);
}
public void Main_WhenGivenInputAndPart2_ItShouldReturnTheNumberOfWaysToWin()
{
var result = Program.Main(["INPUT.txt", "part2"]);
result.Should().Be(35349468);
}
}