blob: 3b0f540a8ad75044a5025ec97c55246c5977e87a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtTest/qtest.h>
#include <QtWidgets/qmainwindow.h>
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"
|