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-25 15:00:36 -0500
committerBen Harris <ben@tilde.team>2021-12-25 15:00:36 -0500
commitf48423640122dff86b83d7dfa034204ee15d3962 (patch)
treed1f5bb06f80067c5b735e2fd74224006c2049928 /aoc2021.test/DayTests.cs
parent92744372ec292d465e9d257e4cff5d01772851df (diff)
day 25 main
Diffstat (limited to 'aoc2021.test/DayTests.cs')
-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 8acae88..79e7ee3 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -45,6 +45,7 @@ public class DayTests
     [DataRow(typeof(Day22), "658691", "1228699515783640")]
     [DataRow(typeof(Day23), "15365", "52055")]
     [DataRow(typeof(Day24), "99299513899971", "93185111127911")]
+    [DataRow(typeof(Day25), "417", "")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -98,6 +99,7 @@ public class DayTests
     [DataRow(typeof(Day21), "739785", "444356092776315")]
     [DataRow(typeof(Day22), "590784", "39769202357779")]
     [DataRow(typeof(Day23), "12521", "44169")]
+    [DataRow(typeof(Day25), "58", "")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;