forked from organicmaps/organicmaps-tmp
Tests on std::string DebugPrint(GeoObjectId const & id);
This commit is contained in:
parent
11cbba93f3
commit
795ae12091
1 changed files with 9 additions and 0 deletions
|
@ -41,4 +41,13 @@ UNIT_TEST(GeoObjectId)
|
|||
TEST_EQUAL(fias.GetType(), GeoObjectId::Type::Fias, ());
|
||||
TEST_EQUAL(DebugPrint(fias), "FIAS 61861", ());
|
||||
}
|
||||
|
||||
UNIT_TEST(GeoObjectId_DebugPrint)
|
||||
{
|
||||
GeoObjectId const invalid;
|
||||
TEST_EQUAL(DebugPrint(invalid), "Invalid 0", ());
|
||||
|
||||
GeoObjectId const valid(GeoObjectId::Type::OsmWay, 123);
|
||||
TEST_EQUAL(DebugPrint(valid), "Osm Way 123", ());
|
||||
}
|
||||
} // namespace base
|
||||
|
|
Loading…
Add table
Reference in a new issue