about summary refs log tree commit diff
path: root/aoc2021.test/DayTests.cs
diff options
context:
space:
mode:
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 3bc1d84..9a10d38 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -5,6 +5,7 @@ public class DayTests
 {
     [DataTestMethod]
     [DataRow(typeof(Day01), "1616", "1645")]
+    [DataRow(typeof(Day02), "2272262", "2134882034")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -36,6 +37,7 @@ public class DayTests
     
     [DataTestMethod]
     [DataRow(typeof(Day01), "7", "5")]
+    [DataRow(typeof(Day02), "150", "900")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;