QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / assignSequenceTypes.5.qml
1 import QtQuick 2.0
2 import Qt.test 1.0
3
4 MySequenceConversionObject {
5     Component.onCompleted: {
6         intListProperty = 1;
7         qrealListProperty = 1.1;
8         boolListProperty = false;
9         urlListProperty = "http://www.example1.com";
10         stringListProperty = "one";
11         qstringListProperty = "two";
12     }
13 }