diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-25 17:31:10 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-25 17:31:10 +0800 |
commit | 5d5bb7cd4faf03b34407a9e26ca76aac802a7306 (patch) | |
tree | a7a91a22fee93d64a3528f2be2713b26995ee4ec /test | |
parent | 2be2127f7d5ec7796f4e5b5a69068db4c1ccc42b (diff) | |
download | advent-of-code-5d5bb7cd4faf03b34407a9e26ca76aac802a7306.tar.gz advent-of-code-5d5bb7cd4faf03b34407a9e26ca76aac802a7306.zip |
2016 day17
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 97c6fc0..a88f431 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -154,11 +154,11 @@ TEST_CASE("Dragon Checksum", "[2016]") { } -TEST_CASE("", "[2016]") { +TEST_CASE("Two Steps Forward", "[2016]") { line_view lv = load_file("../src/2016/day17/input"); auto p = aoc2016::day17(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE("DDURRLRRDD" == p.first); + REQUIRE(436 == p.second); } |