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:
-rw-r--r--search/search_tests/locality_finder_test.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/search/search_tests/locality_finder_test.cpp b/search/search_tests/locality_finder_test.cpp
index fc2ea02dd1..48314862ae 100644
--- a/search/search_tests/locality_finder_test.cpp
+++ b/search/search_tests/locality_finder_test.cpp
@@ -8,8 +8,11 @@
#include "platform/country_file.hpp"
#include "platform/local_country_file.hpp"
+#include "platform/local_country_file_utils.hpp"
#include "platform/platform.hpp"
+#include "base/scope_guard.hpp"
+
namespace
{
@@ -43,9 +46,17 @@ UNIT_TEST(LocalityFinder)
Index index;
m2::RectD rect;
+ auto world = platform::LocalCountryFile::MakeForTesting("World");
+ auto cleanup = [&world]()
+ {
+ platform::CountryIndexes::DeleteFromDisk(world);
+ };
+ MY_SCOPE_GUARD(cleanupOnExit, cleanup);
+ cleanup();
+
try
{
- auto const p = index.Register(platform::LocalCountryFile::MakeForTesting("World"));
+ auto const p = index.Register(world);
TEST_EQUAL(MwmSet::RegResult::Success, p.second, ());
MwmSet::MwmHandle const & handle = p.first;