Removed invalid test

This commit is contained in:
Alex Zolotarev 2011-03-26 17:28:51 +00:00 committed by Alex Zolotarev
parent adc6929a8d
commit 2c0fbf647d

View file

@ -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) );
}
}