diff options
Diffstat (limited to 'test/test_2020.cpp')
-rw-r--r-- | test/test_2020.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_2020.cpp b/test/test_2020.cpp index fd38eab..10668df 100644 --- a/test/test_2020.cpp +++ b/test/test_2020.cpp @@ -41,3 +41,8 @@ TEST_CASE("Binary Boarding", "[2020]") { line_view lv = load_file("../src/2020/day5/input"); REQUIRE(842 == aoc2020::day5(lv)); } + +TEST_CASE("Custom Customs", "[2020]") { + line_view lv = load_file("../src/2020/day6/input"); + REQUIRE(7120 == aoc2020::day6(lv)); +} |