From eec86d7fd1972176ef1f5070f215e59aa85fa2ed Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 5 Dec 2021 19:36:45 -0500 Subject: day 5 part 2 --- aoc2021.test/DayTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'aoc2021.test') diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index 31b1170..c8427a6 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -8,6 +8,7 @@ public class DayTests [DataRow(typeof(Day02), "2272262", "2134882034")] [DataRow(typeof(Day03), "3009600", "6940518")] [DataRow(typeof(Day04), "8580", "9576")] + [DataRow(typeof(Day05), "7318", "19939")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -42,7 +43,7 @@ public class DayTests [DataRow(typeof(Day02), "150", "900")] [DataRow(typeof(Day03), "198", "230")] [DataRow(typeof(Day04), "4512", "1924")] - [DataRow(typeof(Day05), "5", "")] + [DataRow(typeof(Day05), "5", "12")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1