Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-03-11 17:34:10 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:56:28 +0300
commit9cec925752462dd806bce66c2c8cbff6e9144666 (patch)
tree6e779e374d4f782b7c616ae0ed6ae3f3aedd4764 /platform/platform_tests
parentf9e8c97c6fb55926ff906e0320cf68c618dc02a3 (diff)
Code review. Fix data loss.
Diffstat (limited to 'platform/platform_tests')
-rw-r--r--platform/platform_tests/platform_test.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/platform/platform_tests/platform_test.cpp b/platform/platform_tests/platform_test.cpp
index 70f8eda357..d791c14fb7 100644
--- a/platform/platform_tests/platform_test.cpp
+++ b/platform/platform_tests/platform_test.cpp
@@ -258,14 +258,3 @@ UNIT_TEST(IsSingleMwm)
TEST(!version::IsSingleMwm(version::FOR_TESTING_TWO_COMPONENT_MWM1), ());
TEST(!version::IsSingleMwm(version::FOR_TESTING_TWO_COMPONENT_MWM2), ());
}
-
-UNIT_TEST(PathJoin)
-{
-#ifdef OMIM_OS_WINDOWS
- TEST_EQUAL("foo\\bar", Platform::PathJoin({"foo", "bar"}), ());
- TEST_EQUAL("foo\\bar\\baz", Platform::PathJoin({"foo", "bar", "baz"}), ());
-#else
- TEST_EQUAL("foo/bar", Platform::PathJoin({"foo", "bar"}), ());
- TEST_EQUAL("foo/bar/baz", Platform::PathJoin({"foo", "bar", "baz"}), ());
-#endif
-}