diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-03-20 19:40:16 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-03-20 19:40:16 +0800 |
commit | 8d14dac6c384fcccfdf884f5c89d363ec00e97e2 (patch) | |
tree | 949684fee9a2bb57b62f927978fb94c4de0c5ed2 /test/test_2015.cpp | |
parent | 967853be2d5f2945d70b59899bc6d25e0de2dd42 (diff) | |
download | advent-of-code-8d14dac6c384fcccfdf884f5c89d363ec00e97e2.tar.gz advent-of-code-8d14dac6c384fcccfdf884f5c89d363ec00e97e2.zip |
day16
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r-- | test/test_2015.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp index d3242fe..72aa4df 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -5,6 +5,7 @@ #include "2015/day13/aoc.h" #include "2015/day14/aoc.h" #include "2015/day15/aoc.h" +#include "2015/day16/aoc.h" #include "2015/day2/aoc.h" #include "2015/day3/aoc.h" #include "2015/day4/aoc.h" @@ -173,3 +174,7 @@ TEST_CASE("Science for Hungry People", "[day15]") { int cals = 500; REQUIRE(1766400 == aoc2015::day15(lv, &cals)); } + +TEST_CASE("Aunt Sue", "[day16]") { + // line_view lv = load_file("../src/2015/day16/input"); +} |