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), ()); +}