From cdf3674e4e837b6646f6367a6b3e9371a49120e1 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 10 Dec 2021 00:43:57 -0500 Subject: d10p1 --- aoc2021.test/DayTests.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'aoc2021.test/DayTests.cs') diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index 7186a13..51cee5a 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -13,6 +13,7 @@ public class DayTests [DataRow(typeof(Day07), "345035", "97038163")] [DataRow(typeof(Day08), "362", "1020159")] [DataRow(typeof(Day09), "478", "1327014")] + [DataRow(typeof(Day10), "288291", "")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -52,6 +53,7 @@ public class DayTests [DataRow(typeof(Day07), "37", "168")] [DataRow(typeof(Day08), "26", "61229")] [DataRow(typeof(Day09), "15", "1134")] + [DataRow(typeof(Day10), "26397", "288957")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1