BD_Integratoren/C++/test/catch_main.cpp
2021-12-22 13:45:26 +01:00

11 lines
235 B
C++

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