mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
c912ac053e
Add tst_qPrefGeocoding qml file to test C++ qml connection Signed-off-by: Jan Iversen <jani@apache.org>
26 lines
618 B
QML
26 lines
618 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.6
|
|
import QtTest 1.2
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
TestCase {
|
|
name: "qPrefGeocoding"
|
|
|
|
SsrfGeocodingPrefs {
|
|
id: geo
|
|
}
|
|
|
|
function test_variables() {
|
|
//TBD var x1 = geo.first_taxonomy_category
|
|
//TBD geo.first_taxonomy_category = ??
|
|
//TBD compare(geo.first_taxonom_categroy, ??)
|
|
|
|
//TBD var x2 = geo.second_taxonomy_category
|
|
//TBD geo.second_taxonomy_category = ??
|
|
//TBD compare(geo.second_taxonom_categroy, ??)
|
|
|
|
//TBD var x3 = geo.third_taxonomy_category
|
|
//TBD geo.third_taxonomy_category = ??
|
|
//TBD compare(geo.third_taxonom_categroy, ??)
|
|
}
|
|
}
|