aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@digia.com>2013-04-30 12:33:16 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-04 11:54:37 +0200
commitd9effc96522a2df9567c2dd43ccee00e777add43 (patch)
treed56c7cd74027710da857f4121813e1482cec643a /tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
parent9cd18091402bfa9a1c190a882f60297f2b1ade11 (diff)
Tests: add qmlCreateWindow in tst_qqmlcomponent
Task-number: QTBUG-30919 Change-Id: I474a327e057978356a4ae395d8f59a66afaf2f7f Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp')
-rw-r--r--tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp b/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
index 697c8103b0..9eeff66e7a 100644
--- a/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
+++ b/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
@@ -105,6 +105,7 @@ public:
private slots:
void null();
void loadEmptyUrl();
+ void qmlCreateWindow();
void qmlCreateObject();
void qmlCreateObjectWithProperties();
void qmlIncubateObject();
@@ -163,6 +164,15 @@ void tst_qqmlcomponent::qmlIncubateObject()
delete object;
}
+void tst_qqmlcomponent::qmlCreateWindow()
+{
+ QQmlEngine engine;
+ QQmlComponent component(&engine);
+ component.loadUrl(testFileUrl("createWindow.qml"));
+ QQuickWindow* window = qobject_cast<QQuickWindow *>(component.create());
+ QVERIFY(window);
+}
+
void tst_qqmlcomponent::qmlCreateObject()
{
QQmlEngine engine;