mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
daf8921d6f
Add tst_qPrefDiveComputer qml file to test C++ qml connection Signed-off-by: Jan Iversen <jani@apache.org>
39 lines
713 B
QML
39 lines
713 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.6
|
|
import QtTest 1.2
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
TestCase {
|
|
name: "qPrefDiveComputer"
|
|
|
|
SsrfDiveComputerPrefs {
|
|
id: tst
|
|
}
|
|
|
|
SsrfPrefs {
|
|
id: prefs
|
|
}
|
|
|
|
function test_variables() {
|
|
var x1 = tst.device
|
|
tst.device = "my device"
|
|
compare(tst.device, "my device")
|
|
|
|
var x1 = tst.device_name
|
|
tst.device_name = "my device name"
|
|
compare(tst.device_name, "my device name")
|
|
|
|
var x1 = tst.download_mode
|
|
tst.download_mode = 19
|
|
compare(tst.download_mode, 19)
|
|
|
|
var x1 = tst.product
|
|
tst.product = "my product"
|
|
compare(tst.product, "my product")
|
|
|
|
var x1 = tst.vendor
|
|
tst.vendor = "my vendor"
|
|
compare(tst.vendor, "my vendor")
|
|
}
|
|
}
|
|
|