aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qmlplugindump/tests/dumper/Singleton/CompositeSingleton.qml
diff options
context:
space:
mode:
authorMarco Benelli <marco.benelli@theqtcompany.com>2015-11-20 17:14:25 +0100
committerMarco Benelli <marco.benelli@theqtcompany.com>2015-12-10 14:48:59 +0000
commit5f96bc07389382d534934120301c2d1a89d24657 (patch)
tree5dbf09e32de5cb278e76ccbac8f2def6af4b7b91 /tests/manual/qmlplugindump/tests/dumper/Singleton/CompositeSingleton.qml
parent177050862e644f9a279086b703cb04e06ea409b8 (diff)
qmlplugindump: add manual tests.v5.6.0-beta1
Added a small test infrastructure in order to run tests on sample projects and quickly define new test cases. Running tests will also compile (and clean) sample tests. Change-Id: Ibd0e48201dafe335198479d605d676ca5b753566 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'tests/manual/qmlplugindump/tests/dumper/Singleton/CompositeSingleton.qml')
-rw-r--r--tests/manual/qmlplugindump/tests/dumper/Singleton/CompositeSingleton.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/manual/qmlplugindump/tests/dumper/Singleton/CompositeSingleton.qml b/tests/manual/qmlplugindump/tests/dumper/Singleton/CompositeSingleton.qml
new file mode 100644
index 0000000000..b47d2e98f4
--- /dev/null
+++ b/tests/manual/qmlplugindump/tests/dumper/Singleton/CompositeSingleton.qml
@@ -0,0 +1,6 @@
+pragma Singleton
+import QtQuick 2.0
+
+QtObject {
+ property int test: 0
+}