diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2018.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_2018.cpp b/test/test_2018.cpp index f8699a1..a14f437 100644 --- a/test/test_2018.cpp +++ b/test/test_2018.cpp @@ -29,3 +29,8 @@ TEST_CASE("No Matter How You Slice It", "[2018]") { REQUIRE(109785 == p.first); REQUIRE(504 == p.second); } + +TEST_CASE("Repose Record", "[2018]") { + line_view lv = load_file("../src/2018/day4/input"); + REQUIRE(0 == aoc2018::day4(lv)); +} |