desktop-ui-tests/base/WindowTestCase.qml

17 lines
225 B
QML
Raw Normal View History

2021-10-01 11:37:08 +03:00
import QtQuick 2.14
import QtTest 1.14
import QtQuick.Window 2.14
TestCase {
id: root
readonly property Window window: baseWindow
Window {
id: baseWindow
width: 800
height: 600
}
}