mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
1ee7265972
use new qml registration Signed-off-by: Jan Iversen <jani@apache.org>
17 lines
443 B
QML
17 lines
443 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.6
|
|
import QtTest 1.2
|
|
|
|
TestCase {
|
|
name: "qPrefLocationService"
|
|
|
|
function test_variables() {
|
|
var x1 = PrefLocationService.distance_threshold
|
|
PrefLocationService.distance_threshold = 123
|
|
compare(PrefLocationService.distance_threshold , 123)
|
|
|
|
var x2 = PrefLocationService.time_threshold
|
|
PrefLocationService.time_threshold = 12
|
|
compare(PrefLocationService.time_threshold , 12)
|
|
}
|
|
}
|