From 3e5a5dc92bfc505785b1d35c749ee9cf62ee05d5 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 15 Dec 2021 13:29:21 -0500 Subject: day 15 --- aoc2021.test/DayTests.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'aoc2021.test/DayTests.cs') diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index 18add59..8cc3484 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -35,6 +35,7 @@ public class DayTests [DataRow(typeof(Day12), "4549", "120535")] [DataRow(typeof(Day13), "837", Day13Actual)] [DataRow(typeof(Day14), "5656", "12271437788530")] + [DataRow(typeof(Day15), "702", "2955")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -79,6 +80,7 @@ public class DayTests [DataRow(typeof(Day12), "226", "3509")] [DataRow(typeof(Day13), "17", Day13Test)] [DataRow(typeof(Day14), "1588", "2188189693529")] + [DataRow(typeof(Day15), "40", "315")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1