TestStreet --------------------------------------------------------------------------------------
| 240 | |
| 241 | // TestStreet -------------------------------------------------------------------------------------- |
| 242 | TestStreet::TestStreet(vector<m2::PointD> const & points, string const & name, string const & lang) |
| 243 | : TestFeature(points, MakeName(name, lang), Type::Line) |
| 244 | { |
| 245 | SetType({"highway", "living_street"}); |
| 246 | } |
| 247 | |
| 248 | TestStreet::TestStreet(vector<m2::PointD> const & points, StringUtf8Multilang const & name) |
| 249 | : TestFeature(points, name, Type::Line) |
nothing calls this directly
no test coverage detected