about summary refs log tree commit diff
path: root/aoc2021.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-03 01:05:45 -0500
committerBen Harris <ben@tilde.team>2021-12-03 01:05:45 -0500
commit15cf1a6a5650efb644ee9edfb4327736daef24f6 (patch)
tree5fa0ace67237494b8c301b532703cc589bff120f /aoc2021.test
parent437ad3ecfa330b53af289785758eabf807c62e37 (diff)
day 3 part 1
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 9a10d38..f9d2a1d 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -6,6 +6,7 @@ public class DayTests
     [DataTestMethod]
     [DataRow(typeof(Day01), "1616", "1645")]
     [DataRow(typeof(Day02), "2272262", "2134882034")]
+    [DataRow(typeof(Day03), "3009600", "")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();
@@ -38,6 +39,7 @@ public class DayTests
     [DataTestMethod]
     [DataRow(typeof(Day01), "7", "5")]
     [DataRow(typeof(Day02), "150", "900")]
+    [DataRow(typeof(Day03), "198", "230")]
     public void CheckTestInputs(Type dayType, string part1, string part2)
     {
         Day.UseTestInput = true;