summaryrefslogtreecommitdiffstats
path: root/tests/tst_qPrefGeocoding.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tst_qPrefGeocoding.qml')
-rw-r--r--tests/tst_qPrefGeocoding.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/tst_qPrefGeocoding.qml b/tests/tst_qPrefGeocoding.qml
index f28eaba28..01e2335c8 100644
--- a/tests/tst_qPrefGeocoding.qml
+++ b/tests/tst_qPrefGeocoding.qml
@@ -18,4 +18,27 @@ TestCase {
//TBD PrefGeocoding.third_taxonomy_category = ??
//TBD compare(PrefGeocoding.third_taxonom_categroy, ??)
}
+
+ Item {
+ id: spyCatcher
+
+//TBD property bool spy1 : false
+//TBD property bool spy2 : false
+//TBD property bool spy3 : false
+
+ Connections {
+ target: PrefGeocoding
+//TBD onChanged: {spyCatcher.spy1 = true }
+ }
+ }
+
+ function test_signals() {
+//TBD PrefGeocoding.first_taxonomy_category = ??
+//TBD PrefGeocoding.second_taxonomy_category = ??
+//TBD PrefGeocoding.third_taxonomy_category = ??
+
+//TBD compare(spyCatcher.spy1, true)
+//TBD compare(spyCatcher.spy2, true)
+//TBD compare(spyCatcher.spy3, true)
+ }
}