aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml')
-rw-r--r--tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml b/tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml
new file mode 100644
index 0000000000..2fc8b90ac8
--- /dev/null
+++ b/tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml
@@ -0,0 +1,13 @@
+import QtQuick 2.0
+
+Item
+{
+ property int testInt: 0
+ property double testDouble: 0.0
+ property real testReal: 0.0
+ property point testPoint: Qt.point(0, 0)
+ property size testSize: Qt.size(0, 0)
+ property rect testRect: Qt.rect(0, 0, 0, 0)
+ property color testColor: Qt.rgba(0.0, 0.0, 0.0, 0.0)
+ property var testVar: 0
+}