aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qmltest/qmltest/tst_item.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qmltest/qmltest/tst_item.qml')
-rw-r--r--examples/qmltest/qmltest/tst_item.qml20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/qmltest/qmltest/tst_item.qml b/examples/qmltest/qmltest/tst_item.qml
deleted file mode 100644
index 047bd254dd..0000000000
--- a/examples/qmltest/qmltest/tst_item.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-import QtTest
-
-Rectangle {
- id: foo
- width: 640; height: 480
- color: "cyan"
-
- TestCase {
- name: "ItemTests"
- id: test1
-
- function test_color() {
- compare(foo.color, "#00ffff")
- }
- }
-}