about summary refs log tree commit diff
path: root/aoc2021.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-19 12:46:41 -0500
committerBen Harris <ben@tilde.team>2021-12-19 12:46:41 -0500
commitc5427a196768965d202c4d51b85d43d6471dfb3e (patch)
tree4808cdd1327147d576c1e85a7bfa92cfd6ea8d76 /aoc2021.test
parent18f43c76985f1a5c6d0d8769b3871e3460f3fd66 (diff)
day 19
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 295cb9a..27fca45 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -39,6 +39,7 @@ public class DayTests
     [DataRow(typeof(Day16), "852", "19348959966392")]
     [DataRow(typeof(Day17), "12090", "5059")]
     [DataRow(typeof(Day18), "4289", "4807")]
+    // [DataRow(typeof(Day19), "338", "9862")] // takes too long and i don't feel like optimizing
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -87,6 +88,7 @@ public class DayTests
     [DataRow(typeof(Day16), "16", "15")]
     [DataRow(typeof(Day17), "45", "112")]
     [DataRow(typeof(Day18), "4140", "3993")]
+    [DataRow(typeof(Day19), "79", "3621")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;