Files
advent-of-code-2023/07/CamelCards.Tests/ProgramTests.cs
T

11 lines
242 B
C#
Raw Normal View History

2023-12-07 14:06:26 -06:00
namespace CamelCards.Tests;
public class ProgramTests
{
[Fact]
public async Task Main_WhenCalledWithInputFile_ItShouldReturnExpectedResult()
{
var result = await Program.Main(["INPUT.txt"]);
result.Should().Be(251287184);
}
}