2022-02-10 18:15:33 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <catch2/catch_session.hpp>
|
2021-09-29 10:52:36 +02:00
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
2022-02-10 18:15:33 +01:00
|
|
|
puts("unittests");
|
|
|
|
|
|
|
|
|
|
|
|
// Catch internal function call
|
|
|
|
int result = Catch::Session().run(argc, argv);
|
|
|
|
|
|
|
|
// global clean-up
|
|
|
|
return result;
|
2021-09-29 10:52:36 +02:00
|
|
|
}
|
|
|
|
|