eive-obsw/unittest/main.cpp

14 lines
287 B
C++
Raw Permalink Normal View History

2022-02-10 18:15:33 +01:00
#include <catch2/catch_session.hpp>
2021-09-29 10:52:36 +02:00
2022-02-17 17:48:32 +01:00
#include "testEnvironment.h"
2021-09-29 10:52:36 +02:00
int main(int argc, char* argv[]) {
2022-02-17 17:48:32 +01:00
testEnvironment::setup();
2022-09-29 13:23:55 +02:00
testEnvironment::initialize();
// Catch internal function call
int result = Catch::Session().run(argc, argv);
// global clean-up
return result;
}