about summary refs log tree commit diff
path: root/aoc2019.test
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-12-16 23:37:03 -0500
committerBen Harris <ben@tilde.team>2020-12-16 23:38:49 -0500
commitbbd0d2b4db5f40ddf09c456f195e68f91251172c (patch)
treeb323c3690c0c47d0ada0b318ba62856550a0c438 /aoc2019.test
parent34d27fd823ef60e8c4165d522ed4d8453d1b9626 (diff)
day 23
Diffstat (limited to 'aoc2019.test')
-rw-r--r--aoc2019.test/Tests.cs10
1 files changed, 7 insertions, 3 deletions
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