From 7feb07944a4183f4caae4b9004bab1d4e139fd51 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 12 Dec 2021 12:51:36 -0500 Subject: day 12 --- aoc2021.test/DayTests.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'aoc2021.test') diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index 5d22b13..723205e 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -15,6 +15,7 @@ public class DayTests [DataRow(typeof(Day09), "478", "1327014")] [DataRow(typeof(Day10), "288291", "820045242")] [DataRow(typeof(Day11), "1613", "510")] + [DataRow(typeof(Day12), "4549", "120535")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -56,6 +57,7 @@ public class DayTests [DataRow(typeof(Day09), "15", "1134")] [DataRow(typeof(Day10), "26397", "288957")] [DataRow(typeof(Day11), "1656", "195")] + [DataRow(typeof(Day12), "226", "3509")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1