diff --git a/2023/solvelib/01/day01_test.hpp b/2023/solvelib/01/day01_test.hpp index 6b060f3..4058532 100644 --- a/2023/solvelib/01/day01_test.hpp +++ b/2023/solvelib/01/day01_test.hpp @@ -16,4 +16,10 @@ TEST_CASE("Day 1") { solution.load("./data/01/example3.txt"); REQUIRE_EQ(solution.part2(), 33); } + + SUBCASE("Real data") { + solution.load("./data/01/input.txt"); + REQUIRE_EQ(solution.part1(), 54561); + REQUIRE_EQ(solution.part2(), 54076); + } } \ No newline at end of file