aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/selftests/tst_stringify.qml
blob: d4cd02e4b4b61014a88ad864fbed4e1bf656733b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0
import QtTest 1.1

TestCase {
    name: "SelfTests_stringify"

    function test_stringify_rect() {
        var rect = Qt.rect(0, 1, 2, 3)
        var stringifiedRect = qtest_results.stringify(rect)
        verify(stringifiedRect.length > 0)
        compare(stringifiedRect, rect.toString())
    }
}