[platform][tests] Fixed World files version check.

This commit is contained in:
vng 2015-08-10 13:10:54 +03:00 committed by Alex Zolotarev
parent 854f4d6974
commit 34ec9d6c14

View file

@ -257,15 +257,16 @@ UNIT_TEST(LocalCountryFile_AllLocalFilesLookup)
bool worldCoastsFound = false;
for (auto const & file : localFiles)
{
// With the new concepts, World mwm files have valid version.
if (file.GetCountryName() == WORLD_FILE_NAME)
{
worldFound = true;
TEST_EQUAL(0, file.GetVersion(), ());
TEST_NOT_EQUAL(0, file.GetVersion(), ());
}
if (file.GetCountryName() == WORLD_COASTS_FILE_NAME)
{
worldCoastsFound = true;
TEST_EQUAL(0, file.GetVersion(), ());
TEST_NOT_EQUAL(0, file.GetVersion(), ());
}
}
TEST(worldFound, ());