summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/multiexec/tst_multiexec.cpp
blob: afcc62d8aa96d427f5830d22c12577627940914a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0


#include <QTest>

class tst_Nothing: public QObject
{
Q_OBJECT
private slots:
    void nothing() { QVERIFY(true); }
};

int main(int argc, char *argv[])
{
    tst_Nothing nada;
    for (int i = 0; i < 5; ++i)
        QTest::qExec(&nada, argc, argv);
    return 0;
}

#include "tst_multiexec.moc"