aboutsummaryrefslogtreecommitdiff
path: root/test/test_2015.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r--test/test_2015.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp
index 5358ac4..282ce2d 100644
--- a/test/test_2015.cpp
+++ b/test/test_2015.cpp
@@ -15,6 +15,7 @@
#include "2015/day22/aoc.h"
#include "2015/day23/aoc.h"
#include "2015/day24/aoc.h"
+#include "2015/day25/aoc.h"
#include "2015/day3/aoc.h"
#include "2015/day4/aoc.h"
#include "2015/day5/aoc.h"
@@ -243,9 +244,16 @@ TEST_CASE("Opening the Turing Lock", "[2015]") {
REQUIRE(334 == p.second);
}
-TEST_CASE("", "[2015]") {
+TEST_CASE("It Hangs in the Balance", "[2015]") {
line_view lv = load_file("../src/2015/day24/input0");
auto p = aoc2015::day24(lv);
REQUIRE(0 == p.first);
REQUIRE(0 == p.second);
}
+
+TEST_CASE("Let It Snow", "[2015]") {
+ line_view lv = load_file("../src/2015/day25/input");
+ auto p = aoc2015::day25(lv);
+ REQUIRE(0 == p.first);
+ REQUIRE(0 == p.second);
+}