From ae4a45ddadb5ba403824602c81c909507f6bc31d Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 4 Dec 2021 12:52:07 -0500 Subject: day 4 --- 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 df97b57..6e2a340 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -7,6 +7,7 @@ public class DayTests [DataRow(typeof(Day01), "1616", "1645")] [DataRow(typeof(Day02), "2272262", "2134882034")] [DataRow(typeof(Day03), "3009600", "6940518")] + [DataRow(typeof(Day04), "8580", "9576")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -40,6 +41,7 @@ public class DayTests [DataRow(typeof(Day01), "7", "5")] [DataRow(typeof(Day02), "150", "900")] [DataRow(typeof(Day03), "198", "230")] + [DataRow(typeof(Day04), "4512", "1924")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1