forked from organicmaps/organicmaps
Removed invalid test
This commit is contained in:
parent
adc6929a8d
commit
2c0fbf647d
1 changed files with 0 additions and 31 deletions
|
@ -168,34 +168,3 @@ UNIT_TEST(EncodePolyline)
|
|||
TestEncodePolyline("4000simp", maxPoint, SimplifyPoints(points, 4000));
|
||||
}
|
||||
}
|
||||
|
||||
UNIT_TEST(DecodePolyline_Values)
|
||||
{
|
||||
uint64_t arr[] = {
|
||||
2734738402133224327,
|
||||
587102334176945,
|
||||
154352840547926,
|
||||
43024411088417,
|
||||
2208572839502425,
|
||||
1537729724693572015,
|
||||
110442683719211
|
||||
};
|
||||
|
||||
int64_t const baseP = 876424843953707746;
|
||||
|
||||
array_read<uint64_t> in(arr, ARRAY_SIZE(arr));
|
||||
|
||||
vector<m2::PointU> buffer(10);
|
||||
array_write<m2::PointU> out(buffer);
|
||||
|
||||
geo_coding::DecodePolylinePrev2(in,
|
||||
m2::Uint64ToPointU(baseP), PointD2PointU(MercatorBounds::maxX, MercatorBounds::maxY),
|
||||
out);
|
||||
|
||||
for (size_t i = 0; i < out.size(); ++i)
|
||||
{
|
||||
CoordPointT const pt = PointU2PointD(out[i]);
|
||||
TEST ( MercatorBounds::minX <= pt.first && pt.first <= MercatorBounds::maxX, (pt.first) );
|
||||
TEST ( MercatorBounds::minY <= pt.second && pt.second <= MercatorBounds::maxY, (pt.second) );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue