forked from organicmaps/organicmaps
Commit useless logging in geometry_tests.
This commit is contained in:
parent
208e163e75
commit
8dbf49350d
2 changed files with 3 additions and 3 deletions
|
@ -66,7 +66,7 @@ UNIT_TEST(RegionDifference_Smoke)
|
|||
TEST_EQUAL(res.size(), 1, ());
|
||||
TEST_EQUAL(res[0].GetRect(), r2.GetRect(), ());
|
||||
|
||||
LOG(LINFO, (res[0]));
|
||||
// LOG(LINFO, (res[0]));
|
||||
}
|
||||
|
||||
{
|
||||
|
|
|
@ -55,7 +55,7 @@ void TestSimplificationOfPoly(m2::PointD const * points, size_t count, SimplifyF
|
|||
{
|
||||
vector<m2::PointD> result;
|
||||
simplifyFn(points, points + count, epsilon, DistanceF(), MakeBackInsertFunctor(result));
|
||||
LOG(LINFO, ("eps:", epsilon, "size:", result.size()));
|
||||
// LOG(LINFO, ("eps:", epsilon, "size:", result.size()));
|
||||
|
||||
TEST_GREATER(result.size(), 1, ());
|
||||
TEST_EQUAL(result.front(), points[0], (epsilon));
|
||||
|
@ -69,7 +69,7 @@ void TestSimplificationOfPoly(m2::PointD const * points, size_t count, SimplifyF
|
|||
UNIT_TEST(Simplification_TestDataIsCorrect)
|
||||
{
|
||||
TEST_GREATER_OR_EQUAL(LargePolylineTestData::m_Size, 3, ());
|
||||
LOG(LINFO, ("Polyline test size:", LargePolylineTestData::m_Size));
|
||||
// LOG(LINFO, ("Polyline test size:", LargePolylineTestData::m_Size));
|
||||
}
|
||||
|
||||
UNIT_TEST(Simplification_DP_Smoke)
|
||||
|
|
Loading…
Add table
Reference in a new issue