mirror of
https://github.com/pantor/inja.git
synced 2026-02-17 09:03:58 +00:00
* Remove circular dependencies in headers * Fix unit test includes and test data directory location
16 lines
381 B
C++
16 lines
381 B
C++
// Copyright (c) 2020 Pantor. All rights reserved.
|
|
|
|
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
|
#define JSON_USE_IMPLICIT_CONVERSIONS 0
|
|
#define JSON_NO_IO 1
|
|
|
|
#include "test-files.cpp"
|
|
#include "test-functions.cpp"
|
|
#include "test-renderer.cpp"
|
|
#include "test-units.cpp"
|
|
|
|
#define xstr(s) str(s)
|
|
#define str(s) #s
|
|
|
|
const std::string test_file_directory { xstr(__TEST_DIR__)"/data/" };
|