forked from organicmaps/organicmaps
Minor test changes.
This commit is contained in:
parent
9ec15a4d2b
commit
e64a982065
2 changed files with 11 additions and 6 deletions
|
@ -335,7 +335,6 @@ UNIT_TEST(LastUniChar)
|
|||
TEST_EQUAL(strings::LastUniChar(""), 0, ());
|
||||
TEST_EQUAL(strings::LastUniChar("Hello"), 0x6f, ());
|
||||
TEST_EQUAL(strings::LastUniChar(" \xD0\x90"), 0x0410, ());
|
||||
|
||||
}
|
||||
|
||||
UNIT_TEST(GetUniString)
|
||||
|
@ -372,10 +371,17 @@ UNIT_TEST(Normalize)
|
|||
TEST_EQUAL(us, result, ());
|
||||
}
|
||||
|
||||
UNIT_TEST(Normalize_Polish)
|
||||
UNIT_TEST(Normalize_Special)
|
||||
{
|
||||
string const utf8 = "ąĄćłŁÓŻźŃĘęĆ";
|
||||
TEST_EQUAL(strings::ToUtf8(strings::Normalize(strings::MakeUniString(utf8))), "aAclLOZzNEeC", ());
|
||||
{
|
||||
string const utf8 = "ąĄćłŁÓŻźŃĘęĆ";
|
||||
TEST_EQUAL(strings::ToUtf8(strings::Normalize(strings::MakeUniString(utf8))), "aAclLOZzNEeC", ());
|
||||
}
|
||||
|
||||
{
|
||||
string const utf8 = "əüöğ";
|
||||
TEST_EQUAL(strings::ToUtf8(strings::Normalize(strings::MakeUniString(utf8))), "əuog", ());
|
||||
}
|
||||
}
|
||||
|
||||
UNIT_TEST(UniStringToUtf8)
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "../indexer/search_delimiters.hpp"
|
||||
#include "../base/buffer_vector.hpp"
|
||||
#include "../std/algorithm.hpp"
|
||||
|
||||
|
||||
namespace search
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue