diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-25 19:03:22 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-25 19:03:22 +0800 |
commit | d14d334f1b6890258bd68dc1d73d88fe97129851 (patch) | |
tree | aafd474ed0498f402a7e622c0094434e12fcdb8c /test | |
parent | 5d5bb7cd4faf03b34407a9e26ca76aac802a7306 (diff) | |
download | advent-of-code-d14d334f1b6890258bd68dc1d73d88fe97129851.tar.gz advent-of-code-d14d334f1b6890258bd68dc1d73d88fe97129851.zip |
2016 day18
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2016.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index a88f431..9a1b571 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -162,11 +162,11 @@ TEST_CASE("Two Steps Forward", "[2016]") { } -TEST_CASE("", "[2016]") { +TEST_CASE("Like a Rogue", "[2016]") { line_view lv = load_file("../src/2016/day18/input"); auto p = aoc2016::day18(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE(2035 == p.first); + REQUIRE(20000577 == p.second); } |