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