AusweisApp2/test/qml/generic/test_Style.qml

28 lines
509 B
QML
Raw Normal View History

2019-09-30 17:22:19 +02:00
/*
* \copyright Copyright (c) 2018-2019 Governikus GmbH & Co. KG, Germany
*/
2019-01-03 15:06:22 +01:00
import QtTest 1.10
TestCase {
name: "ModuleLoadingStyle"
id: parent
function test_load_NpaBusyIndicatorStyle() {
var item = createTemporaryQmlObject("
import Governikus.Style 1.0;
NpaBusyIndicatorStyle {}
", parent);
item.destroy();
}
2019-09-30 17:22:19 +02:00
function test_load_Style() {
2019-01-03 15:06:22 +01:00
var item = createTemporaryQmlObject("
import QtQuick 2.0;
import Governikus.Style 1.0;
Item {}
", parent);
item.destroy();
}
}