blob: 2335726f6597b69048276dccbb9fe670e3dbff00 (
plain)
1
2
3
4
5
6
7
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);
}
|