Files
advent-of-code-2023/02/CubeConundrum.Tests/ProgramTests.cs
T

11 lines
224 B
C#
Raw Normal View History

2023-12-02 11:12:26 -06:00
namespace CubeConundrum.Tests;
public class ProgramTests
{
[Fact]
public async Task Main_GivenInput_ItShouldReturnExpectedSum()
{
var result = await Program.Main(["INPUT.txt"]);
result.Should().Be(2879);
}
}