summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_standalone_test/tst_standalone_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/cmake/test_standalone_test/tst_standalone_test.cpp')
-rw-r--r--tests/auto/cmake/test_standalone_test/tst_standalone_test.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/auto/cmake/test_standalone_test/tst_standalone_test.cpp b/tests/auto/cmake/test_standalone_test/tst_standalone_test.cpp
new file mode 100644
index 0000000000..fa533602ec
--- /dev/null
+++ b/tests/auto/cmake/test_standalone_test/tst_standalone_test.cpp
@@ -0,0 +1,22 @@
+// Copyright (C) 2024 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QTest>
+#include <QWindow>
+
+class tst_standalone_test : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void testLaunched()
+ {
+ QWindow w;
+ w.show();
+ QVERIFY(QTest::qWaitForWindowActive(&w));
+ }
+};
+
+QTEST_MAIN(tst_standalone_test)
+
+#include "tst_standalone_test.moc"