| 90 | } |
| 91 | |
| 92 | void Test(std::vector<NamedPoint> const & input, std::vector<ClusterT> & expected) |
| 93 | { |
| 94 | auto result = generator::GetClusters(input, getRadiusMFunction, isSameFunction); |
| 95 | |
| 96 | Sort(result); |
| 97 | Sort(expected); |
| 98 | TEST_EQUAL(result, expected, ()); |
| 99 | } |
| 100 | |
| 101 | UNIT_TEST(ClustersFinder_Empty) |
| 102 | { |
no test coverage detected