| 51 | } |
| 52 | |
| 53 | void TestRunCmpPoints(std::vector<m2::PointD> const & pointsFact, std::vector<m2::PointD> const & pointsPlan, double r) |
| 54 | { |
| 55 | TEST_EQUAL(pointsFact.size(), pointsPlan.size(), ()); |
| 56 | TEST_GREATER(pointsFact.size(), 2, ()); |
| 57 | for (size_t i = 0; i < pointsFact.size(); ++i) |
| 58 | TEST(AlmostEqualAbs(pointsFact[i], pointsPlan[i], kMwmPointAccuracy), ()); |
| 59 | } |
| 60 | |
| 61 | void TestRunCmpNumbers(double val1, double val2) |
| 62 | { |
no test coverage detected