forked from organicmaps/organicmaps
[Old map downloader] Tests on IsSingleMwm function.
This commit is contained in:
parent
c1fa3c7df9
commit
f2ed9bc59a
1 changed files with 9 additions and 0 deletions
|
@ -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), ());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue