diff options
author | Caroline Chao <caroline.chao@digia.com> | 2013-04-11 08:35:57 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-04-12 19:43:23 +0200 |
commit | 87344633111b86e77567378c07783367fb57a26e (patch) | |
tree | fdfb0b5e1f59e1421c68487c587184b65b36f650 /tests/auto/applicationwindow/applicationwindow.pro | |
parent | a0cc1951b30282a367db8fd9933101a6c851c15b (diff) | |
download | qtquickcontrols-87344633111b86e77567378c07783367fb57a26e.tar.gz |
Tests: Remove tst_applicationwindow.qml
And replace it by a c++ test.
quick_test_main from QtQuickTest uses QQuickView as a
top level window. The fact the ApplicationWindow is a Window
itself leads to problems when for example the ApplicationWindow
is set to visible.
Change-Id: Iee8a8dffe52912aaa7e1000a91177f6dd7e3d8cb
Reviewed-by: Jan Arve Sæther <jan-arve.saether@digia.com>
Reviewed-by: Liang Qi <liang.qi@digia.com>
Diffstat (limited to 'tests/auto/applicationwindow/applicationwindow.pro')
-rw-r--r-- | tests/auto/applicationwindow/applicationwindow.pro | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/applicationwindow/applicationwindow.pro b/tests/auto/applicationwindow/applicationwindow.pro new file mode 100644 index 00000000..1e4dcf9e --- /dev/null +++ b/tests/auto/applicationwindow/applicationwindow.pro @@ -0,0 +1,15 @@ +CONFIG += testcase +TARGET = tst_applicationwindow +SOURCES += tst_applicationwindow.cpp + +macx:CONFIG -= app_bundle + +QT += widgets core-private gui-private qml-private quick-private v8-private testlib + +include (../shared/util.pri) + +TESTDATA = data/* + +OTHER_FILES += \ + data/basicapplicationwindow.qml + |