Add Catch2 and Google Test on Cmake

ToDo:
- Add compiling QElectroTech on Cmake (help needed)
- more Tests?
   - Qt Test
   - Boost Test

to test
run qtcreator
File >  open => CMakeLists.txt
This commit is contained in:
Simon De Backer
2020-12-08 12:18:20 +01:00
parent b70775bc84
commit 6cd6efaca9
13 changed files with 615 additions and 0 deletions

9
tests/catch/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#define CATCH_CONFIG_RUNNER
#include <QtGui/QGuiApplication>
#include <catch2/catch.hpp>
int main(int argc, char** argv)
{
QGuiApplication app(argc, argv);
return Catch::Session().run(argc, argv);
}