diff options
Diffstat (limited to 'test/main.cpp')
-rw-r--r-- | test/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/main.cpp b/test/main.cpp new file mode 100644 index 00000000..2335726f --- /dev/null +++ b/test/main.cpp @@ -0,0 +1,8 @@ +#define CATCH_CONFIG_RUNNER +#include "catch2/catch.hpp" +#include "test/utils/logging/log_config.hpp" + +auto main(int argc, char* argv[]) -> int { + ConfigureLogging(); + return Catch::Session().run(argc, argv); +} |