diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-11-03 06:10:53 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-11-03 06:11:37 (GMT) |
commit | 0cf756891d94bcfef52c7c18ce4e3e3f7e64e2d7 (patch) | |
tree | e51cb0704156651830a4dc78a744543d608339c6 /tests/auto/declarative/behaviors/data | |
parent | 36420993cb7572fa630ac88cdd6afefa2ab1c660 (diff) | |
download | Qt-0cf756891d94bcfef52c7c18ce4e3e3f7e64e2d7.zip Qt-0cf756891d94bcfef52c7c18ce4e3e3f7e64e2d7.tar.gz Qt-0cf756891d94bcfef52c7c18ce4e3e3f7e64e2d7.tar.bz2 |
Add more Behavior autotests.
Diffstat (limited to 'tests/auto/declarative/behaviors/data')
-rw-r--r-- | tests/auto/declarative/behaviors/data/simple.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/declarative/behaviors/data/simple.qml b/tests/auto/declarative/behaviors/data/simple.qml index a715f7b..37c3915 100644 --- a/tests/auto/declarative/behaviors/data/simple.qml +++ b/tests/auto/declarative/behaviors/data/simple.qml @@ -6,7 +6,10 @@ Rectangle { id: rect objectName: "MyRect" width: 100; height: 100; color: "green" - x: Behavior { NumberAnimation { duration: 200; } } + x: Behavior { + objectName: "MyBehavior"; + NumberAnimation { duration: 200; } + } } MouseRegion { id: clicker |