diff options
author | Thiago Marcos P. Santos <thiago.santos@nokia.com> | 2011-01-18 14:25:45 +0200 |
---|---|---|
committer | Thiago Marcos P. Santos <thiago.santos@nokia.com> | 2011-01-18 14:25:45 +0200 |
commit | 7e860af0953b37442757843be2aebd05f57a920b (patch) | |
tree | 4545c88e2b16f6a62ba6736b0b83e9ce059ea875 /tests/benchmarks/ButtonRowBenchmark.qml | |
parent | dda896cd2e0f54c92ac111d8d910c2e0abd78512 (diff) | |
download | qtquickcontrols-7e860af0953b37442757843be2aebd05f57a920b.tar.gz |
Added missing benchmark tests
Also renamed input fields tests to the current component name
Diffstat (limited to 'tests/benchmarks/ButtonRowBenchmark.qml')
-rw-r--r-- | tests/benchmarks/ButtonRowBenchmark.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/benchmarks/ButtonRowBenchmark.qml b/tests/benchmarks/ButtonRowBenchmark.qml new file mode 100644 index 00000000..ebe88494 --- /dev/null +++ b/tests/benchmarks/ButtonRowBenchmark.qml @@ -0,0 +1,13 @@ +import QtQuick 1.0 +import QmlTime 1.0 as QmlTime +import "../../components" as QtComponents + +Item { + QmlTime.Timer { + component: QtComponents.ButtonRow { + QtComponents.Button { text: "Button A" } + QtComponents.Button { text: "Buttom B" } + QtComponents.Button { text: "Bottom C" } + } + } +} |