summaryrefslogtreecommitdiff
path: root/tests/benchmarks/ButtonRowBenchmark.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/ButtonRowBenchmark.qml')
-rw-r--r--tests/benchmarks/ButtonRowBenchmark.qml13
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" }
+ }
+ }
+}