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-05 19:36:45 -0500
committerBen Harris <ben@tilde.team>2021-12-05 19:36:45 -0500
commiteec86d7fd1972176ef1f5070f215e59aa85fa2ed (patch)
tree0faf1538d55ed79d8e4127e1a9cef7c9006ce058 /aoc2021.test/DayTests.cs
parent4d17d257e8cfce805e278ccf2eb27582f296a7b3 (diff)
day 5 part 2
Diffstat (limited to 'aoc2021.test/DayTests.cs')
-rw-r--r--aoc2021.test/DayTests.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs
index 31b1170..c8427a6 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -8,6 +8,7 @@ public class DayTests
     [DataRow(typeof(Day02), "2272262", "2134882034")]
     [DataRow(typeof(Day03), "3009600", "6940518")]
     [DataRow(typeof(Day04), "8580", "9576")]
+    [DataRow(typeof(Day05), "7318", "19939")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -42,7 +43,7 @@ public class DayTests
     [DataRow(typeof(Day02), "150", "900")]
     [DataRow(typeof(Day03), "198", "230")]
     [DataRow(typeof(Day04), "4512", "1924")]
-    [DataRow(typeof(Day05), "5", "")]
+    [DataRow(typeof(Day05), "5", "12")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;