summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAsheem Mamoowala <asheem.mamoowala@mapbox.com>2017-10-27 16:23:32 -0700
committerAsheem Mamoowala <asheem.mamoowala@mapbox.com>2017-10-30 16:44:34 -0700
commit375f9f94b6a5348ced58fa0621a8618d1c5ed075 (patch)
treea97d2b134ff010ce4c761e9d5ee027310ad2de2e /test
parent484c04a924565feade99f162826152fcf3acb8b9 (diff)
downloadqtlocation-mapboxgl-375f9f94b6a5348ced58fa0621a8618d1c5ed075.tar.gz
[core] Add LatLngBounds::contains(const LatLngBounds&)
Diffstat (limited to 'test')
-rw-r--r--test/util/geo.test.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/util/geo.test.cpp b/test/util/geo.test.cpp
index d0d01b6f88..38f29d1dd4 100644
--- a/test/util/geo.test.cpp
+++ b/test/util/geo.test.cpp
@@ -220,3 +220,9 @@ TEST(LatLngBounds, FromTileID) {
ASSERT_DOUBLE_EQ(util::LATITUDE_MAX, bounds.north());
}
}
+
+TEST(LatLngBounds, Contains) {
+ const LatLngBounds bounds( CanonicalTileID(4,2,6));
+ const LatLngBounds innerBounds( CanonicalTileID(9,82,197));
+ EXPECT_TRUE(bounds.contains(innerBounds));
+}