diff options
Diffstat (limited to 'tests/auto/quick/qquicksmoothedanimation/data/simpleanimation.qml')
-rw-r--r-- | tests/auto/quick/qquicksmoothedanimation/data/simpleanimation.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/quick/qquicksmoothedanimation/data/simpleanimation.qml b/tests/auto/quick/qquicksmoothedanimation/data/simpleanimation.qml new file mode 100644 index 0000000000..b2be63ec94 --- /dev/null +++ b/tests/auto/quick/qquicksmoothedanimation/data/simpleanimation.qml @@ -0,0 +1,12 @@ +import QtQuick 2.0 + +Rectangle { + width: 300; height: 300; + Rectangle { + objectName: "rect" + color: "red" + width: 60; height: 60; + x: 100; y: 100; + } + SmoothedAnimation { objectName: "anim"} +}
\ No newline at end of file |