summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/initmain/tst_initmain.cpp
blob: 69376f704cc15bf71e5667e2a50370b515361642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0


#include <QtCore/QCoreApplication>
#include <QTest>

class tst_InitMain : public QObject
{
    Q_OBJECT

public:
    static void initMain() { m_initMainCalled = true; }

private slots:
    void testcase();

private:
    static bool m_initMainCalled;
};

bool tst_InitMain::m_initMainCalled = false;

void tst_InitMain::testcase()
{
    QVERIFY(m_initMainCalled);
}

QTEST_MAIN(tst_InitMain)

#include "tst_initmain.moc"