diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-08-16 23:12:58 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-08-16 23:12:58 (GMT) |
commit | c6867a620259ee6c82a038995f424bef63d45aea (patch) | |
tree | 1b3f04e08b89ea3dcb22f3b7881291fb586de58a /tests | |
parent | de16cd8821847682d4938f74610a83c1d52a40b9 (diff) | |
download | Qt-c6867a620259ee6c82a038995f424bef63d45aea.zip Qt-c6867a620259ee6c82a038995f424bef63d45aea.tar.gz Qt-c6867a620259ee6c82a038995f424bef63d45aea.tar.bz2 |
Add missing auto test files.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qdeclarativeflickable/data/flickableqgraphicswidget.qml | 7 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativepositioners/data/verticalqgraphicswidget.qml | 24 |
2 files changed, 31 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickableqgraphicswidget.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickableqgraphicswidget.qml new file mode 100644 index 0000000..8e95a94 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickableqgraphicswidget.qml @@ -0,0 +1,7 @@ +import Qt 4.7 + +Flickable { + width: 100; height: 100 + + QGraphicsWidget { objectName: "widget1"; width: 200; height: 300 } +} diff --git a/tests/auto/declarative/qdeclarativepositioners/data/verticalqgraphicswidget.qml b/tests/auto/declarative/qdeclarativepositioners/data/verticalqgraphicswidget.qml new file mode 100644 index 0000000..c9c8607 --- /dev/null +++ b/tests/auto/declarative/qdeclarativepositioners/data/verticalqgraphicswidget.qml @@ -0,0 +1,24 @@ +import Qt 4.7 + +Item { + width: 640 + height: 480 + Column { + objectName: "column" + QGraphicsWidget { + objectName: "one" + width: 50 + height: 50 + } + QGraphicsWidget { + objectName: "two" + width: 20 + height: 10 + } + QGraphicsWidget { + objectName: "three" + width: 40 + height: 20 + } + } +} |