aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt5
-rw-r--r--test/test_2017.cpp7
-rw-r--r--test/test_2018.cpp0
-rw-r--r--test/test_2019.cpp7
-rw-r--r--test/test_2020.cpp7
-rw-r--r--test/test_2021.cpp7
6 files changed, 33 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index d6d67e6..f5535f5 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -3,6 +3,11 @@ set(TEST_FILES
test_common.cpp
test_2015.cpp
test_2016.cpp
+ test_2017.cpp
+ test_2018.cpp
+ test_2019.cpp
+ test_2020.cpp
+ test_2021.cpp
)
add_executable(aoc ${TEST_FILES})
diff --git a/test/test_2017.cpp b/test/test_2017.cpp
new file mode 100644
index 0000000..d062697
--- /dev/null
+++ b/test/test_2017.cpp
@@ -0,0 +1,7 @@
+#include "2017/day1/aoc.h"
+#include "catch.hpp"
+#include <stdio.h>
+
+TEST_CASE("", "[day1]") {
+ // line_view lv = load_file("../src/2017/day1/input");
+}
diff --git a/test/test_2018.cpp b/test/test_2018.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/test/test_2018.cpp
diff --git a/test/test_2019.cpp b/test/test_2019.cpp
new file mode 100644
index 0000000..428c067
--- /dev/null
+++ b/test/test_2019.cpp
@@ -0,0 +1,7 @@
+#include "2019/day1/aoc.h"
+#include "catch.hpp"
+#include <stdio.h>
+
+TEST_CASE("", "[day1]") {
+ // line_view lv = load_file("../src/2019/day1/input");
+}
diff --git a/test/test_2020.cpp b/test/test_2020.cpp
new file mode 100644
index 0000000..e1bb716
--- /dev/null
+++ b/test/test_2020.cpp
@@ -0,0 +1,7 @@
+#include "2020/day1/aoc.h"
+#include "catch.hpp"
+#include <stdio.h>
+
+TEST_CASE("", "[day1]") {
+ // line_view lv = load_file("../src/2020/day1/input");
+}
diff --git a/test/test_2021.cpp b/test/test_2021.cpp
new file mode 100644
index 0000000..4709dac
--- /dev/null
+++ b/test/test_2021.cpp
@@ -0,0 +1,7 @@
+#include "2021/day1/aoc.h"
+#include "catch.hpp"
+#include <stdio.h>
+
+TEST_CASE("", "[day1]") {
+ // line_view lv = load_file("../src/2021/day1/input");
+}