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