aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_2019.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_2019.cpp b/test/test_2019.cpp
index 470c220..922af88 100644
--- a/test/test_2019.cpp
+++ b/test/test_2019.cpp
@@ -32,3 +32,8 @@ TEST_CASE("Secure Container", "[2019]") {
REQUIRE(966 == p.first);
REQUIRE(628 == p.second);
}
+
+TEST_CASE("Sunny with a Chance of Asteroids", "[2019]") {
+ line_view lv = load_file("../src/2019/day5/input");
+ REQUIRE(6761139 == aoc2019::day5(lv));
+}