diff options
author | zmiao <miao.zhao@mapbox.com> | 2020-02-07 15:34:01 +0200 |
---|---|---|
committer | zmiao <miao.zhao@mapbox.com> | 2020-02-12 12:24:05 +0200 |
commit | 2963afa010e75bb8bc3c20150c06c5779121077d (patch) | |
tree | 009843afa585563a0bb0d2dfee41edfe1ec70baf /test/fixtures | |
parent | 1bd2ccf2398004b02b479e6ad3144f52e7631b2a (diff) | |
download | qtlocation-mapboxgl-2963afa010e75bb8bc3c20150c06c5779121077d.tar.gz |
Add support for expression test
Fix polygon within algorithm
Add Unit tests
Fix incorrect metrics folder for ios-render-test-runner job
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/expression_equality/within.a.json | 4 | ||||
-rw-r--r-- | test/fixtures/expression_equality/within.b.json | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/fixtures/expression_equality/within.a.json b/test/fixtures/expression_equality/within.a.json new file mode 100644 index 0000000000..c982681537 --- /dev/null +++ b/test/fixtures/expression_equality/within.a.json @@ -0,0 +1,4 @@ +["within", { + "type": "Polygon", + "coordinates": [[[0, 0], [0, 5], [5, 5], [5, 0], [0, 0]]] + }]
\ No newline at end of file diff --git a/test/fixtures/expression_equality/within.b.json b/test/fixtures/expression_equality/within.b.json new file mode 100644 index 0000000000..e5805c93a1 --- /dev/null +++ b/test/fixtures/expression_equality/within.b.json @@ -0,0 +1,4 @@ +["within", { + "type": "Polygon", + "coordinates": [[[0, 0], [0, 6], [5, 5], [5, 0], [0, 0]]] + }]
\ No newline at end of file |