Tests on std::string DebugPrint(GeoObjectId const & id);

This commit is contained in:
Vladimir Byko-Ianko 2018-09-07 15:51:01 +03:00 committed by Maksim Andrianov
parent 11cbba93f3
commit 795ae12091

View file

@ -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