feat: initial project setup for day 3

This commit is contained in:
Stevan Freeborn
2024-12-03 22:25:18 -06:00
parent 597e08024f
commit 0a7b6b2291
5 changed files with 112 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace MullItOver.Tests;
public class PuzzleParserTests
{
private readonly PuzzleParser _parser = new();
[Test]
public async Task Parse_WhenInputIsEmpty_ReturnsEmptyList()
{
var result = _parser.Parse("");
await Assert.That(result).IsEquivalentTo(new List<Instruction>());
}
}