Robin Mueller
fcef7e42a5
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
14 lines
287 B
C++
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;
|
|
}
|