blob: f28eaba28f45eae4bac32b23a6bd04e332b2443a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// SPDX-License-Identifier: GPL-2.0
import QtQuick 2.6
import QtTest 1.2
TestCase {
name: "qPrefGeocoding"
function test_variables() {
//TBD var x1 = PrefGeocoding.first_taxonomy_category
//TBD PrefGeocoding.first_taxonomy_category = ??
//TBD compare(PrefGeocoding.first_taxonom_categroy, ??)
//TBD var x2 = PrefGeocoding.second_taxonomy_category
//TBD PrefGeocoding.second_taxonomy_category = ??
//TBD compare(PrefGeocoding.second_taxonom_categroy, ??)
//TBD var x3 = PrefGeocoding.third_taxonomy_category
//TBD PrefGeocoding.third_taxonomy_category = ??
//TBD compare(PrefGeocoding.third_taxonom_categroy, ??)
}
}
|