From f2ed9bc59a9f989e37a9a170f5baa8f7c57c6e71 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Mon, 25 Jan 2016 20:36:17 +0300 Subject: [PATCH] [Old map downloader] Tests on IsSingleMwm function. --- platform/platform_tests/platform_test.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/platform/platform_tests/platform_test.cpp b/platform/platform_tests/platform_test.cpp index 52a881d5a7..683e2071a7 100644 --- a/platform/platform_tests/platform_test.cpp +++ b/platform/platform_tests/platform_test.cpp @@ -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), ()); +}