2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
2024-02-02 13:36:10 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2022-02-14 15:38:47 +00:00
|
|
|
#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"
|