about summary refs log tree commit diff
path: root/aoc2021.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-16 11:48:02 -0500
committerBen Harris <ben@tilde.team>2021-12-16 11:48:02 -0500
commitbf8e77441bb6ae200a29b32a04d8607a41c03e93 (patch)
tree842715e4914f8034c431002c2b4bb9656ba9c71f /aoc2021.test
parent3e5a5dc92bfc505785b1d35c749ee9cf62ee05d5 (diff)
day 16
feeling glad for Enumerable.Chunk today so i didn't have to write my own
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 8cc3484..09d2e89 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -36,6 +36,7 @@ public class DayTests
     [DataRow(typeof(Day13), "837", Day13Actual)]
     [DataRow(typeof(Day14), "5656", "12271437788530")]
     [DataRow(typeof(Day15), "702", "2955")]
+    [DataRow(typeof(Day16), "852", "19348959966392")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -81,6 +82,7 @@ public class DayTests
     [DataRow(typeof(Day13), "17", Day13Test)]
     [DataRow(typeof(Day14), "1588", "2188189693529")]
     [DataRow(typeof(Day15), "40", "315")]
+    [DataRow(typeof(Day16), "16", "15")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;