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-11 00:40:11 -0500
committerBen Harris <ben@tilde.team>2021-12-11 00:40:11 -0500
commitc168e0b9a2e6054583c1d44a80b154a689a17fee (patch)
treef16957b22e9ee204979725a3b2bef34ed11c3968 /aoc2021.test/DayTests.cs
parentfabcc5695119b0f49da3b874cce29430f222c710 (diff)
day 11
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 2795d7c..5d22b13 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -14,6 +14,7 @@ public class DayTests
     [DataRow(typeof(Day08), "362", "1020159")]
     [DataRow(typeof(Day09), "478", "1327014")]
     [DataRow(typeof(Day10), "288291", "820045242")]
+    [DataRow(typeof(Day11), "1613", "510")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -54,6 +55,7 @@ public class DayTests
     [DataRow(typeof(Day08), "26", "61229")]
     [DataRow(typeof(Day09), "15", "1134")]
     [DataRow(typeof(Day10), "26397", "288957")]
+    [DataRow(typeof(Day11), "1656", "195")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;