LibreVNA/Software/PC_Application/LibreVNA-Test/main.cpp

20 lines
468 B
C++
Raw Normal View History

2022-10-01 17:10:34 +02:00
#include "utiltests.h"
2022-10-01 20:09:46 +02:00
#include "portextensiontests.h"
2024-01-20 21:19:25 +01:00
#include "parametertests.h"
#include "ffttests.h"
2022-10-01 17:10:34 +02:00
#include <QtTest>
int main(int argc, char *argv[])
{
2022-10-01 20:09:46 +02:00
QApplication a(argc, argv);
2022-10-01 17:10:34 +02:00
int status = 0;
status |= QTest::qExec(new UtilTests, argc, argv);
2022-10-01 20:09:46 +02:00
status |= QTest::qExec(new PortExtensionTests, argc, argv);
2024-01-20 21:19:25 +01:00
status |= QTest::qExec(new ParameterTests, argc, argv);
status |= QTest::qExec(new fftTests, argc, argv);
2022-10-01 17:10:34 +02:00
return status;
}