| 87 | } |
| 88 | |
| 89 | void TestRawGenerator::BuildFeatures(std::string const & mwmName) |
| 90 | { |
| 91 | using namespace feature; |
| 92 | auto const type = IsWorld(mwmName) ? DataHeader::MapType::World : DataHeader::MapType::Country; |
| 93 | CHECK(GenerateFinalFeatures(m_genInfo, mwmName, type), ()); |
| 94 | |
| 95 | std::string const mwmPath = GetMwmPath(mwmName); |
| 96 | |
| 97 | CHECK(BuildOffsetsTable(mwmPath), ()); |
| 98 | CHECK(indexer::BuildIndexFromDataFile(mwmPath, mwmPath), ()); |
| 99 | } |
| 100 | |
| 101 | void TestRawGenerator::BuildSearch(std::string const & mwmName) |
| 102 | { |
no test coverage detected