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

12 lines
175 B
C++
Raw Normal View History

2022-10-01 23:10:34 +08:00
#include "utiltests.h"
#include <QtTest>
int main(int argc, char *argv[])
{
int status = 0;
status |= QTest::qExec(new UtilTests, argc, argv);
return status;
}