eive-obsw/unittest/main.cpp
Ulrich Mohr e95647c572
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
working on thermal controller unit test.
2022-02-14 16:17:42 +01:00

12 lines
206 B
C++

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