diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-04-03 16:56:31 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-04-03 16:56:31 +0800 |
commit | e8daf4c16f0616868f6c719e52f054dc19692d3e (patch) | |
tree | 6e85fcb42f5f972a88f2540c0dea640222a9a2df /test | |
parent | 1e7f58a8c34b916b1bb7cc1155cd25db8801e284 (diff) | |
download | advent-of-code-e8daf4c16f0616868f6c719e52f054dc19692d3e.tar.gz advent-of-code-e8daf4c16f0616868f6c719e52f054dc19692d3e.zip |
day1s
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 5 | ||||
-rw-r--r-- | test/test_2017.cpp | 7 | ||||
-rw-r--r-- | test/test_2018.cpp | 0 | ||||
-rw-r--r-- | test/test_2019.cpp | 7 | ||||
-rw-r--r-- | test/test_2020.cpp | 7 | ||||
-rw-r--r-- | test/test_2021.cpp | 7 |
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"); +} |