aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-26 19:03:36 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-26 19:03:36 +0800
commitffbb27b62cf714e254620be66835efc02e2ba1d3 (patch)
tree07bcfdf8d2041c3b33946940baa7cf91d4cdec40 /test
parentb24fbdd568fb1bc8a69aa4d7fe2d7a0812c9af86 (diff)
downloadadvent-of-code-ffbb27b62cf714e254620be66835efc02e2ba1d3.tar.gz
advent-of-code-ffbb27b62cf714e254620be66835efc02e2ba1d3.zip
2016 day22 setup
Diffstat (limited to 'test')
-rw-r--r--test/test_2016.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp
index cc3fcfd..dfbb462 100644
--- a/test/test_2016.cpp
+++ b/test/test_2016.cpp
@@ -186,7 +186,7 @@ TEST_CASE("Firewall Rules", "[2016]") {
}
-TEST_CASE("", "[2016]") {
+TEST_CASE("Scrambled Letters and Hash", "[2016]") {
line_view lv = load_file("../src/2016/day21/input");
char cs[8] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'};
char xs[8] = {'f', 'b', 'g', 'd', 'c', 'e', 'a', 'h'};
@@ -196,7 +196,7 @@ TEST_CASE("", "[2016]") {
}
-TEST_CASE("", "[2016]") {
+TEST_CASE("Grid Computing", "[2016]") {
line_view lv = load_file("../src/2016/day22/input");
auto p = aoc2016::day22(lv);
REQUIRE(0 == p.first);