aboutsummaryrefslogtreecommitdiff
path: root/test/test_2015.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2022-03-28 13:44:31 +0800
committerkaiwu <kaiwu2004@gmail.com>2022-03-28 13:44:31 +0800
commit914004cbf85bbc3934deebd16a92fc95073eafdf (patch)
tree40c4a0533e01451ed38b6186ff11e94a1ac795a5 /test/test_2015.cpp
parentebc331c6c06a72cbf085793adbfd072b5ef547a9 (diff)
downloadadvent-of-code-914004cbf85bbc3934deebd16a92fc95073eafdf.tar.gz
advent-of-code-914004cbf85bbc3934deebd16a92fc95073eafdf.zip
day21 done
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r--test/test_2015.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp
index 4fa831a..1abda71 100644
--- a/test/test_2015.cpp
+++ b/test/test_2015.cpp
@@ -217,5 +217,7 @@ TEST_CASE("Infinite Elves and Infinite Houses", "[day20]") {
}
TEST_CASE("RPG Simulator 20XX", "[day21]") {
- // line_view lv = load_file("../src/2015/day21/input");
+ auto p = aoc2015::day21();
+ REQUIRE(91 == p.first);
+ REQUIRE(158 == p.second);
}