diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-04-17 11:19:07 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-04-17 11:19:07 +0800 |
commit | d8ae7408506fa54f698c5d0538883be1dfa44bd6 (patch) | |
tree | 2b41e17dbf2d2405d910618906cf220504f2c20e /test | |
parent | 8a71f9dedc7f74fb31e8c00991c928f1ab44303f (diff) | |
download | advent-of-code-d8ae7408506fa54f698c5d0538883be1dfa44bd6.tar.gz advent-of-code-d8ae7408506fa54f698c5d0538883be1dfa44bd6.zip |
2019 day6
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2019.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_2019.cpp b/test/test_2019.cpp index 30bdd12..a591c94 100644 --- a/test/test_2019.cpp +++ b/test/test_2019.cpp @@ -44,5 +44,6 @@ TEST_CASE("Sunny with a Chance of Asteroids", "[2019]") { TEST_CASE("Universal Orbit Map", "[2019]") { line_view lv = load_file("../src/2019/day6/input"); auto p = aoc2019::day6(lv); - REQUIRE(0 == p); + REQUIRE(312697 == p.first); + REQUIRE(466 == p.second); } |