eive-obsw/unittest/main.cpp
Ulrich Mohr bcac56a65c
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
reworked test setup
2022-02-17 17:48:32 +01:00

14 lines
255 B
C++

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