diff options
Diffstat (limited to 'deps/inja/test/test.cpp')
-rw-r--r-- | deps/inja/test/test.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/deps/inja/test/test.cpp b/deps/inja/test/test.cpp new file mode 100644 index 0000000..50161be --- /dev/null +++ b/deps/inja/test/test.cpp @@ -0,0 +1,15 @@ +// Copyright (c) 2020 Pantor. All rights reserved. + +#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN + +#include "doctest/doctest.h" +#include "inja/inja.hpp" + +using json = nlohmann::json; + +const std::string test_file_directory {"../test/data/"}; + +#include "test-files.cpp" +#include "test-functions.cpp" +#include "test-renderer.cpp" +#include "test-units.cpp" |