From 9678ea57554ccc9085ef97d7b8985731873b345f Mon Sep 17 00:00:00 2001 From: Marco Benelli Date: Wed, 5 Apr 2017 14:43:40 +0200 Subject: [PATCH] QmlJs: add test for code model Change-Id: I3e60274dcce578a170e12d44533e6f83e77d448a Reviewed-by: Erik Verbruggen --- tests/auto/qml/codemodel/check/properties.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/auto/qml/codemodel/check/properties.qml diff --git a/tests/auto/qml/codemodel/check/properties.qml b/tests/auto/qml/codemodel/check/properties.qml new file mode 100644 index 00000000000..5d2b0a68820 --- /dev/null +++ b/tests/auto/qml/codemodel/check/properties.qml @@ -0,0 +1,10 @@ +import QtQuick 1.0 + +Item { + property int width: 200 + property int height: 200 + property string name + property color someColor + property Rectangle someRectangle + default property list foo +}