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-04 12:52:07 -0500
committerBen Harris <ben@tilde.team>2021-12-04 12:52:07 -0500
commitae4a45ddadb5ba403824602c81c909507f6bc31d (patch)
treed57318690b92170c9b41f80e0fa1aaa7050f2e13 /aoc2021.test/DayTests.cs
parent28eb4378a2a7c1d636d5cb26526d428a1ee9c2a6 (diff)
day 4
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 df97b57..6e2a340 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -7,6 +7,7 @@ public class DayTests
     [DataRow(typeof(Day01), "1616", "1645")]
     [DataRow(typeof(Day02), "2272262", "2134882034")]
     [DataRow(typeof(Day03), "3009600", "6940518")]
+    [DataRow(typeof(Day04), "8580", "9576")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -40,6 +41,7 @@ public class DayTests
     [DataRow(typeof(Day01), "7", "5")]
     [DataRow(typeof(Day02), "150", "900")]
     [DataRow(typeof(Day03), "198", "230")]
+    [DataRow(typeof(Day04), "4512", "1924")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;