BD_Integratoren/C++/test/catch_main.cpp
2022-03-28 13:32:58 +02:00

11 lines
241 B
C++

#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;
}