From 752b4045fc9d58a22933c847a12d3788e1fda627 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 20 Dec 2021 01:52:10 -0500 Subject: day 20 --- 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 27fca45..ff0346d 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -40,6 +40,7 @@ public class DayTests [DataRow(typeof(Day17), "12090", "5059")] [DataRow(typeof(Day18), "4289", "4807")] // [DataRow(typeof(Day19), "338", "9862")] // takes too long and i don't feel like optimizing + [DataRow(typeof(Day20), "5306", "17497")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -89,6 +90,7 @@ public class DayTests [DataRow(typeof(Day17), "45", "112")] [DataRow(typeof(Day18), "4140", "3993")] [DataRow(typeof(Day19), "79", "3621")] + [DataRow(typeof(Day20), "35", "3351")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1