diff options
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r-- | test/test_2022.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index 3dfa704..387c575 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -5,6 +5,7 @@ #include "2022/day5/aoc.h" #include "catch.hpp" #include <stdio.h> +#include <string.h> TEST_CASE("Calorie Counting", "[2022]") { line_view lv = load_file("../src/2022/day1/input"); @@ -36,7 +37,9 @@ TEST_CASE("Camp Cleanup", "[2022]") { TEST_CASE("", "[2022]") { line_view lv = load_file("../src/2022/day5/input"); - auto p = aoc2022::day5(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + char message[10] = {0}; + aoc2022::day5(lv, message, 1); + REQUIRE(strcmp(message,"JCMHLVGMG") == 0); + aoc2022::day5(lv, message, 2); + REQUIRE(strcmp(message,"LVMRWSSPZ") == 0); } |