summaryrefslogtreecommitdiff
path: root/tests/auto/declarative_core/tst_plugin.qml
diff options
context:
space:
mode:
authorPaolo Angelelli <paolo.angelelli@qt.io>2019-03-01 12:05:56 +0100
committerPaolo Angelelli <paolo.angelelli@qt.io>2019-03-20 10:47:39 +0000
commit6cfd503ef805651bfe9a112bfdb937f0092577ce (patch)
tree2860e125a6caa8a23d530571a277cf45fc4afffa /tests/auto/declarative_core/tst_plugin.qml
parentd26ef296c7f829b9edd505527b8986c5dba314fa (diff)
downloadqtlocation-6cfd503ef805651bfe9a112bfdb937f0092577ce.tar.gz
Add QDeclarativeGeoServiceProviderRequirements navigation property
This was previously missing, making it impossible to require specific navigation features. [ChangeLog] Added QDeclarativeGeoServiceProviderRequirements navigation property. Change-Id: I75f8f3208aa387aea9d1652bb674fdb747877747 Fixes: QTBUG-72505 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'tests/auto/declarative_core/tst_plugin.qml')
-rw-r--r--tests/auto/declarative_core/tst_plugin.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/declarative_core/tst_plugin.qml b/tests/auto/declarative_core/tst_plugin.qml
index 7b880f1d..23c1ff9f 100644
--- a/tests/auto/declarative_core/tst_plugin.qml
+++ b/tests/auto/declarative_core/tst_plugin.qml
@@ -54,6 +54,7 @@ Item {
mapping: Plugin.OfflineMappingFeature;
geocoding: Plugin.OfflineGeocodingFeature;
places: Plugin.AnyPlacesFeatures;
+ navigation: Plugin.AnyNavigationFeatures;
}
}
@@ -120,6 +121,7 @@ Item {
verify(requiredPlugin.supportsMapping(requiredPlugin.required.mapping))
verify(requiredPlugin.supportsGeocoding(requiredPlugin.required.geocoding))
verify(requiredPlugin.supportsPlaces(requiredPlugin.required.places))
+ verify(requiredPlugin.supportsNavigation(requiredPlugin.required.navigation))
}
function test_placesFeatures() {