rbdlsim/tests/runtests.cc

12 lines
264 B
C++
Raw Normal View History

2020-11-08 12:49:43 +01:00
#define CATCH_CONFIG_RUNNER // This tells Catch to provide a main() - only do this in one cpp file
#include "catch.hpp"
#include "utils.h"
int main (int argc, char* argv[]) {
LoggingInit();
int result = Catch::Session().run(argc, argv);
return result;
}