eive-obsw/unittest/main.cpp
Robin Mueller fcef7e42a5
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
some unittest fixes
2022-09-29 13:23:55 +02:00

14 lines
287 B
C++

#include <catch2/catch_session.hpp>
#include "testEnvironment.h"
int main(int argc, char* argv[]) {
testEnvironment::setup();
testEnvironment::initialize();
// Catch internal function call
int result = Catch::Session().run(argc, argv);
// global clean-up
return result;
}