mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
12 lines
175 B
C++
12 lines
175 B
C++
|
|
#include "utiltests.h"
|
||
|
|
|
||
|
|
#include <QtTest>
|
||
|
|
|
||
|
|
int main(int argc, char *argv[])
|
||
|
|
{
|
||
|
|
int status = 0;
|
||
|
|
status |= QTest::qExec(new UtilTests, argc, argv);
|
||
|
|
|
||
|
|
return status;
|
||
|
|
}
|