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-06 01:00:14 -0500
committerBen Harris <ben@tilde.team>2021-12-06 01:00:14 -0500
commit08e67ecace269c07d0f40333e2d0ede51f9a6161 (patch)
tree2c27db0ef91b8db89d971e34e2f32e575ffbf246 /aoc2021.test/DayTests.cs
parent93e61904ac932d63089ac6d0659aef866d2d2e98 (diff)
day 6 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 c57eead..b5cad43 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -9,6 +9,7 @@ public class DayTests
     [DataRow(typeof(Day03), "3009600", "6940518")]
     [DataRow(typeof(Day04), "8580", "9576")]
     [DataRow(typeof(Day05), "7318", "19939")]
+    [DataRow(typeof(Day06), "362740", "1644874076764")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -44,7 +45,7 @@ public class DayTests
     [DataRow(typeof(Day03), "198", "230")]
     [DataRow(typeof(Day04), "4512", "1924")]
     [DataRow(typeof(Day05), "5", "12")]
-    [DataRow(typeof(Day06), "5934", "")]
+    [DataRow(typeof(Day06), "5934", "26984457539")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;