chore: add xml comments

This commit is contained in:
Stevan Freeborn
2023-12-02 12:46:56 -06:00
parent ea65c5d830
commit f99414041c
5 changed files with 201 additions and 14 deletions
+7
View File
@@ -8,4 +8,11 @@ public class ProgramTests
var result = await Program.Main(["INPUT.txt"]);
result.Should().Be(2879);
}
[Fact]
public async Task Main_GivenInputAndPart2_ItShouldReturnExpectedSum()
{
var result = await Program.Main(["INPUT.txt", "part2"]);
result.Should().Be(65122);
}
}