[Old map downloader] Tests on IsSingleMwm function.

This commit is contained in:
Vladimir Byko-Ianko 2016-01-25 20:36:17 +03:00 committed by Sergey Yershov
parent c1fa3c7df9
commit f2ed9bc59a

View file

@ -1,5 +1,6 @@
#include "testing/testing.hpp"
#include "platform/mwm_version.hpp"
#include "platform/platform.hpp"
#include "defines.hpp"
@ -248,3 +249,11 @@ UNIT_TEST(RmDirRecursively)
TEST(!Platform::IsFileExistsByFullPath(testDir1), ());
TEST(!Platform::IsFileExistsByFullPath(testDir2), ());
}
UNIT_TEST(IsSingleMwm)
{
TEST(version::IsSingleMwm(version::FOR_TESTING_SINGLE_MWM1), ());
TEST(version::IsSingleMwm(version::FOR_TESTING_SINGLE_MWM_LATEST), ());
TEST(!version::IsSingleMwm(version::FOR_TESTING_TWO_COMPONENT_MWM1), ());
TEST(!version::IsSingleMwm(version::FOR_TESTING_TWO_COMPONENT_MWM2), ());
}