eive-obsw/unittest/main.cpp

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;
}