| 111 | "Russia_Moscow\n"; |
| 112 | |
| 113 | void SortForest(tree_node::types::Ptrs<generator::HierarchyEntry> & forest) |
| 114 | { |
| 115 | std::sort(std::begin(forest), std::end(forest), |
| 116 | [](auto const & lhs, auto const & rhs) { return lhs->GetData().m_id < rhs->GetData().m_id; }); |
| 117 | } |
| 118 | |
| 119 | UNIT_CLASS_TEST(TestWithClassificator, Complex_IsComplex) |
| 120 | { |
no test coverage detected