about summary refs log tree commit diff
path: root/aoc2021.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-09 01:20:41 -0500
committerBen Harris <ben@tilde.team>2021-12-09 01:20:41 -0500
commitc19e4799a7d4ca88a0a3cf00f893a18d5c06d8e0 (patch)
tree760bfeff0c964c1ec8e33e789da4021c6334cd5c /aoc2021.test
parent8d3ec2ff24ac89ca4d1a10ef607bc0a5ad038c84 (diff)
day 9
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 3e94274..7186a13 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -12,6 +12,7 @@ public class DayTests
     [DataRow(typeof(Day06), "362740", "1644874076764")]
     [DataRow(typeof(Day07), "345035", "97038163")]
     [DataRow(typeof(Day08), "362", "1020159")]
+    [DataRow(typeof(Day09), "478", "1327014")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -50,6 +51,7 @@ public class DayTests
     [DataRow(typeof(Day06), "5934", "26984457539")]
     [DataRow(typeof(Day07), "37", "168")]
     [DataRow(typeof(Day08), "26", "61229")]
+    [DataRow(typeof(Day09), "15", "1134")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;