about summary refs log tree commit diff
path: root/aoc2021.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-07 11:27:50 -0500
committerBen Harris <ben@tilde.team>2021-12-07 11:27:50 -0500
commitc0a75342201f18fd813ce63fe88aed26b35e4ada (patch)
tree34e830bcc523138f03aa9c2073632671b7402dcb /aoc2021.test
parent85005d5379427df9034acae5e1c1db8337d120f4 (diff)
day 7
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 b5cad43..2ff4dfb 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -10,6 +10,7 @@ public class DayTests
     [DataRow(typeof(Day04), "8580", "9576")]
     [DataRow(typeof(Day05), "7318", "19939")]
     [DataRow(typeof(Day06), "362740", "1644874076764")]
+    [DataRow(typeof(Day07), "345035", "97038163")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -46,6 +47,7 @@ public class DayTests
     [DataRow(typeof(Day04), "4512", "1924")]
     [DataRow(typeof(Day05), "5", "12")]
     [DataRow(typeof(Day06), "5934", "26984457539")]
+    [DataRow(typeof(Day07), "37", "168")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;