TestPlace -------------------------------------------------------------------------------------
| 160 | |
| 161 | // TestPlace ------------------------------------------------------------------------------------- |
| 162 | TestPlace::TestPlace(m2::PointD const & center, string const & name, string const & lang, uint32_t type, |
| 163 | uint8_t rank /* = 0 */) |
| 164 | : TestFeature(center, MakeName(name, lang)) |
| 165 | , m_type(type) |
| 166 | , m_rank(rank) |
| 167 | {} |
| 168 | |
| 169 | TestPlace::TestPlace(m2::PointD const & center, StringUtf8Multilang const & name, uint32_t type, uint8_t rank) |
| 170 | : TestFeature(center, name) |
nothing calls this directly
no test coverage detected