summaryrefslogtreecommitdiff
path: root/lib/catch2/catch_runner.cpp
blob: 8cd5c12085cd70f1de00c585f9d8d92777237dd9 (plain)
1
2
3
4
5
6
7
8
9
10
#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 );
}