Ulrich Mohr
bcac56a65c
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
14 lines
255 B
C++
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;
|
|
}
|