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