From 437ad3ecfa330b53af289785758eabf807c62e37 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 2 Dec 2021 00:11:44 -0500 Subject: solve day 2 --- 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 3bc1d84..9a10d38 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -5,6 +5,7 @@ public class DayTests { [DataTestMethod] [DataRow(typeof(Day01), "1616", "1645")] + [DataRow(typeof(Day02), "2272262", "2134882034")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -36,6 +37,7 @@ public class DayTests [DataTestMethod] [DataRow(typeof(Day01), "7", "5")] + [DataRow(typeof(Day02), "150", "900")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1