Files
advent-of-code-2023/02/CubeConundrum.Tests/ProgramTests.cs
T
2023-12-02 11:12:26 -06:00

11 lines
224 B
C#

namespace CubeConundrum.Tests;
public class ProgramTests
{
[Fact]
public async Task Main_GivenInput_ItShouldReturnExpectedSum()
{
var result = await Program.Main(["INPUT.txt"]);
result.Should().Be(2879);
}
}