Files
qelectrotech-source-mirror/tests/catch/main.cpp
2025-02-19 21:32:21 +01:00

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