From f1f363eea148bafe30829567aea91fabdc5cac51 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 8 Dec 2021 00:09:23 -0500 Subject: day 8 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 2ff4dfb..3e1cccb 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -11,6 +11,7 @@ public class DayTests [DataRow(typeof(Day05), "7318", "19939")] [DataRow(typeof(Day06), "362740", "1644874076764")] [DataRow(typeof(Day07), "345035", "97038163")] + [DataRow(typeof(Day08), "362", "")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -48,6 +49,7 @@ public class DayTests [DataRow(typeof(Day05), "5", "12")] [DataRow(typeof(Day06), "5934", "26984457539")] [DataRow(typeof(Day07), "37", "168")] + [DataRow(typeof(Day08), "26", "")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1