From 15cf1a6a5650efb644ee9edfb4327736daef24f6 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 3 Dec 2021 01:05:45 -0500 Subject: day 3 part 1 --- 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 9a10d38..f9d2a1d 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -6,6 +6,7 @@ public class DayTests [DataTestMethod] [DataRow(typeof(Day01), "1616", "1645")] [DataRow(typeof(Day02), "2272262", "2134882034")] + [DataRow(typeof(Day03), "3009600", "")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -38,6 +39,7 @@ public class DayTests [DataTestMethod] [DataRow(typeof(Day01), "7", "5")] [DataRow(typeof(Day02), "150", "900")] + [DataRow(typeof(Day03), "198", "230")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1