mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-19 23:20:52 +01:00
10 lines
206 B
C++
10 lines
206 B
C++
#define CATCH_CONFIG_RUNNER
|
|
#include <QtGui/QGuiApplication>
|
|
#include <catch2/catch_all.hpp>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
return Catch::Session().run(argc, argv);
|
|
}
|