about summary refs log tree commit diff
path: root/aoc2021.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-08 00:09:23 -0500
committerBen Harris <ben@tilde.team>2021-12-08 00:09:23 -0500
commitf1f363eea148bafe30829567aea91fabdc5cac51 (patch)
tree61251487d3b6764a769e67de45774866dfaa96d5 /aoc2021.test
parent9f1a502a61141e8d3d2aa81332904cd9194604c4 (diff)
day 8 part 1
Diffstat (limited to 'aoc2021.test')
-rw-r--r--aoc2021.test/DayTests.cs2
1 files changed, 2 insertions, 0 deletions
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;