diff options
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r-- | test/test_2015.cpp | 4 |
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); } |