diff options
Diffstat (limited to 'test/test_2018.cpp')
-rw-r--r-- | test/test_2018.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_2018.cpp b/test/test_2018.cpp index a14f437..ee4c755 100644 --- a/test/test_2018.cpp +++ b/test/test_2018.cpp @@ -32,5 +32,7 @@ TEST_CASE("No Matter How You Slice It", "[2018]") { TEST_CASE("Repose Record", "[2018]") { line_view lv = load_file("../src/2018/day4/input"); - REQUIRE(0 == aoc2018::day4(lv)); + auto p = aoc2018::day4(lv); + REQUIRE(14346 == p.first); + REQUIRE(5705 == p.second); } |