Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
tangara-fw/lib/catch2/catch_runner.cpp

10 lines
193 B

#include "catch_runner.hpp"
#define CATCH_CONFIG_RUNNER
#include "catch2/catch.hpp"
void run_catch(void) {
int argc = 1;
char *argv = "catch2";
Catch::Session().run( argc, &argv );
}