summaryrefslogtreecommitdiffstats
path: root/tests/auto/main/builtin-apps/hello-world.red/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/main/builtin-apps/hello-world.red/main.qml')
-rw-r--r--tests/auto/main/builtin-apps/hello-world.red/main.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/main/builtin-apps/hello-world.red/main.qml b/tests/auto/main/builtin-apps/hello-world.red/main.qml
new file mode 100644
index 00000000..b225bdfc
--- /dev/null
+++ b/tests/auto/main/builtin-apps/hello-world.red/main.qml
@@ -0,0 +1,11 @@
+import QtQuick 2.4
+import QtApplicationManager.Application 2.0
+
+ApplicationManagerWindow {
+ color: "red"
+
+ Text {
+ anchors.centerIn: parent
+ text: "Hello World!"
+ }
+}