16 lines
254 B
C++
16 lines
254 B
C++
#include <stdio.h>
|
|
|
|
#include <catch2/catch_session.hpp>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
puts("unittests");
|
|
|
|
|
|
// Catch internal function call
|
|
int result = Catch::Session().run(argc, argv);
|
|
|
|
// global clean-up
|
|
return result;
|
|
}
|
|
|