aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/tst_qmltc.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmltc/tst_qmltc.h')
-rw-r--r--tests/auto/qml/qmltc/tst_qmltc.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/auto/qml/qmltc/tst_qmltc.h b/tests/auto/qml/qmltc/tst_qmltc.h
index af084dcc01..ede6d551a0 100644
--- a/tests/auto/qml/qmltc/tst_qmltc.h
+++ b/tests/auto/qml/qmltc/tst_qmltc.h
@@ -1,7 +1,8 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <qtest.h>
+#include <private/qtqmlmodelsglobal_p.h>
using namespace Qt::StringLiterals;
@@ -34,10 +35,13 @@ private slots:
void jsvalueAssignments();
void extensionTypeBindings();
void visibleAliasMethods(); // QTBUG-103956
+ void customInitialization(); // QTBUG-120700
+ void requiredPropertiesInitialization();
void nonStandardIncludesInsideModule(); // QTBUG-104094
void specialProperties();
void regexpBindings();
void aliasAssignments();
+ void connections();
void signalHandlers();
void jsFunctions();
@@ -93,4 +97,12 @@ private slots:
void constSignalParameters();
void cppNamespaces();
void namespacedName();
+ void checkExportsAreCompiling();
+ void checkExportsNoFileName();
+
+#if QT_CONFIG(qml_table_model)
+ void qmlTableModel();
+#endif
+ void urlToString();
+ void signalConnections();
};