mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-23 22:08:02 -05:00
15 lines
273 B
C++
15 lines
273 B
C++
#include "QTestSuite.h"
|
|
|
|
#include <QtTest/QTest>
|
|
|
|
#include <QDebug>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
qDebug() << ">> Will run" << QTestSuite::suites().size() << "test suites";
|
|
for (QTestSuite*& suite : QTestSuite::suites())
|
|
{
|
|
QTest::qExec(suite, argc, argv);
|
|
}
|
|
}
|