about summary refs log tree commit diff
path: root/aoc2021.test/DayTests.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-10 00:43:57 -0500
committerBen Harris <ben@tilde.team>2021-12-10 00:43:57 -0500
commitcdf3674e4e837b6646f6367a6b3e9371a49120e1 (patch)
treea9f2babee4bd3181f60188029d7ed72f1ae77203 /aoc2021.test/DayTests.cs
parentc19e4799a7d4ca88a0a3cf00f893a18d5c06d8e0 (diff)
d10p1
Diffstat (limited to 'aoc2021.test/DayTests.cs')
-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 7186a13..51cee5a 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -13,6 +13,7 @@ public class DayTests
     [DataRow(typeof(Day07), "345035", "97038163")]
     [DataRow(typeof(Day08), "362", "1020159")]
     [DataRow(typeof(Day09), "478", "1327014")]
+    [DataRow(typeof(Day10), "288291", "")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -52,6 +53,7 @@ public class DayTests
     [DataRow(typeof(Day07), "37", "168")]
     [DataRow(typeof(Day08), "26", "61229")]
     [DataRow(typeof(Day09), "15", "1134")]
+    [DataRow(typeof(Day10), "26397", "288957")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;