From bbd0d2b4db5f40ddf09c456f195e68f91251172c Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 16 Dec 2020 23:37:03 -0500 Subject: day 23 --- aoc2019.test/Tests.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'aoc2019.test') diff --git a/aoc2019.test/Tests.cs b/aoc2019.test/Tests.cs index ebe7a7e..acfb08d 100644 --- a/aoc2019.test/Tests.cs +++ b/aoc2019.test/Tests.cs @@ -16,10 +16,12 @@ namespace aoc2019.test [DataRow(typeof(Day05), "7692125", "14340395")] [DataRow(typeof(Day06), "145250", "274")] [DataRow(typeof(Day07), "19650", "35961106")] - [DataRow(typeof(Day08), "2413", "xxx xx xxx xxxx xxx \nx x x x x x x x x \nxxx x x x x xxx \nx x x xxx x x x \nx x x x x x x x \nxxx xx x xxxx xxx ")] + [DataRow(typeof(Day08), "2413", + "\nxxx xx xxx xxxx xxx \nx x x x x x x x x \nxxx x x x x xxx \nx x x xxx x x x \nx x x x x x x x \nxxx xx x xxxx xxx ")] [DataRow(typeof(Day09), "3409270027", "82760")] [DataRow(typeof(Day10), "260", "608")] - [DataRow(typeof(Day11), "2054", " # # ### #### #### ## ## # # ### \n # # # # # # # # # # # # # \n ## # # # ### # # # #### ### \n # # ### # # #### # # # # # \n # # # # # # # # # # # # # # \n # # # # #### #### # # ## # # ### ")] + [DataRow(typeof(Day11), "2054", + "\n # # ### #### #### ## ## # # ### \n # # # # # # # # # # # # # \n ## # # # ### # # # #### ### \n # # ### # # #### # # # # # \n # # # # # # # # # # # # # # \n # # # # #### #### # # ## # # ### ")] [DataRow(typeof(Day12), "10635", "583523031727256")] //[DataRow(typeof(Day13), "361", "after 7133 moves, the score is: 17590")] [DataRow(typeof(Day14), "397771", "3126714")] @@ -27,6 +29,8 @@ namespace aoc2019.test [DataRow(typeof(Day16), "90744714", "82994322")] [DataRow(typeof(Day17), "2804", "")] [DataRow(typeof(Day19), "114", "10671712")] + [DataRow(typeof(Day21), "", "")] + [DataRow(typeof(Day23), "23626", "19019")] public void TestAllDays(Type dayType, string part1, string part2) { // create day instance @@ -53,4 +57,4 @@ namespace aoc2019.test Assert.AreEqual(part2, part2Actual, $"Incorrect answer for Day {day.DayNumber} Part2"); } } -} +} \ No newline at end of file -- cgit 1.4.1