summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_widgets_app_deployment/main.cpp
blob: 939cd72380aff4f5548849dcdc44c201408b0c11 (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
#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"