diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-04-03 16:48:37 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-04-03 16:48:37 +0800 |
commit | 1e7f58a8c34b916b1bb7cc1155cd25db8801e284 (patch) | |
tree | 929b324afeec00dd5b928938626eeefc9fa0841c /test | |
parent | aa64dbe8a6c980da4476ea8549a0508d29b0027d (diff) | |
download | advent-of-code-1e7f58a8c34b916b1bb7cc1155cd25db8801e284.tar.gz advent-of-code-1e7f58a8c34b916b1bb7cc1155cd25db8801e284.zip |
2016 day1
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 1 | ||||
-rw-r--r-- | test/test_2016.cpp | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b91258c..d6d67e6 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -2,6 +2,7 @@ set(TEST_FILES catch_main.cpp test_common.cpp test_2015.cpp + test_2016.cpp ) add_executable(aoc ${TEST_FILES}) diff --git a/test/test_2016.cpp b/test/test_2016.cpp new file mode 100644 index 0000000..260fe96 --- /dev/null +++ b/test/test_2016.cpp @@ -0,0 +1,9 @@ +#include "2016/day1/aoc.h" +#include "catch.hpp" +#include <stdio.h> + +TEST_CASE("No Time for a Taxicab", "[day1]") { + // line_view lv = load_file("../src/2016/day1/input"); +} + + |