about summary refs log tree commit diff
path: root/aoc2021.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-23 13:23:35 -0500
committerBen Harris <ben@tilde.team>2021-12-23 13:36:19 -0500
commitfac10609e89df6e693f8b7838c244513a0f6b334 (patch)
tree0e145864192ff15ece3f6f8ab26dd75b7707bd6f /aoc2021.test
parentf59f572a94717161779674a2c6136770648b93b1 (diff)
day 23
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 54d5997..3aa8804 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -43,6 +43,7 @@ public class DayTests
     [DataRow(typeof(Day20), "5306", "17497")]
     [DataRow(typeof(Day21), "512442", "346642902541848")]
     [DataRow(typeof(Day22), "658691", "1228699515783640")]
+    [DataRow(typeof(Day23), "15365", "52055")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -95,6 +96,7 @@ public class DayTests
     [DataRow(typeof(Day20), "35", "3351")]
     [DataRow(typeof(Day21), "739785", "444356092776315")]
     [DataRow(typeof(Day22), "590784", "39769202357779")]
+    [DataRow(typeof(Day23), "12521", "44169")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;