summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_widgets_app_deployment/main.cpp
blob: 1823a50169547b933bb334aecc4b4d5d6c5c33c1 (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) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include <QtTest>
#include <QMainWindow>

class test_widgets_app_deployment : public QObject
{
    Q_OBJECT
private slots:
    void canRun();
};

void test_widgets_app_deployment::canRun()
{
    QMainWindow mw;
    mw.show();
    QVERIFY(QTest::qWaitForWindowActive(&mw));
}

QTEST_MAIN(test_widgets_app_deployment)

#include "main.moc"