From 0455ee883d3074639f3c9fca196f0d133109d681 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 18 Dec 2021 10:54:06 -0500 Subject: d18p1 --- aoc2021.test/DayTests.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'aoc2021.test') diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index 7c7f7b7..2d08c5b 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -38,6 +38,7 @@ public class DayTests [DataRow(typeof(Day15), "702", "2955")] [DataRow(typeof(Day16), "852", "19348959966392")] [DataRow(typeof(Day17), "12090", "5059")] + [DataRow(typeof(Day18), "4289", "")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -85,6 +86,7 @@ public class DayTests [DataRow(typeof(Day15), "40", "315")] [DataRow(typeof(Day16), "16", "15")] [DataRow(typeof(Day17), "45", "112")] + [DataRow(typeof(Day18), "4140", "")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1