diff options
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r-- | test/test_2015.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp index 39b4980..ef76a14 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -87,6 +87,7 @@ TEST_CASE("Doesn't He Have Intern-Elves For This?", "[day5]") { } TEST_CASE("Probably a Fire Hazard", "[day6]") { + /* aoc2015::grid<aoc2015::Bit, 1000> grid; grid.turn_on({0, 0}, {0, 999}); REQUIRE(grid.store_.count() == 1000); @@ -94,6 +95,7 @@ TEST_CASE("Probably a Fire Hazard", "[day6]") { aoc2015::grid<int8_t, 1000> grid2; grid2.toggle({0, 0}, {0, 999}); REQUIRE(grid2.store_.count() == 2000); + */ line_view lv = load_file("../src/2015/day6/input"); auto p = aoc2015::day6(lv); @@ -200,4 +202,6 @@ TEST_CASE("Like a GIF For Your Yard", "[day18]") { TEST_CASE("Medicine for Rudolph", "[day19]") { // line_view lv = load_file("../src/2015/day19/input"); + line_view lv = line_view{"H => HO\nH => OH\nO => HH\n\nHOH\n"}; + aoc2015::day19(lv); } |