BD_Integratoren/C++/test/catch_main.cpp
2022-05-16 10:24:45 +02:00

11 lines
241 B
C++
Executable File

#define CATCH_CONFIG_RUNNER
#include <catch2/catch.hpp>
#include "tools/logging.hpp"
int main( int argc, char* argv[] ) {
LOGGER::setLogging(LOG_LEVEL::TRACE);
auto result = Catch::Session().run( argc, argv );
return result;
}