summaryrefslogtreecommitdiffstats
path: root/tests/storage/test_phrase_index.cpp
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-02-21 14:09:32 +0800
committerPeng Wu <alexepico@gmail.com>2012-02-21 14:09:32 +0800
commit62dffb4c3615c275d514ee9428d1688770c6173b (patch)
tree13bc21f7052d15c1fefae58f7d9cc62f6a3d810f /tests/storage/test_phrase_index.cpp
parent5deda46d8f6c8e922cc31e7958d3558589bb7260 (diff)
downloadlibpinyin-62dffb4c3615c275d514ee9428d1688770c6173b.tar.gz
libpinyin-62dffb4c3615c275d514ee9428d1688770c6173b.tar.xz
libpinyin-62dffb4c3615c275d514ee9428d1688770c6173b.zip
update tests directory
Diffstat (limited to 'tests/storage/test_phrase_index.cpp')
-rw-r--r--tests/storage/test_phrase_index.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/storage/test_phrase_index.cpp b/tests/storage/test_phrase_index.cpp
index b883c9e..22f5efc 100644
--- a/tests/storage/test_phrase_index.cpp
+++ b/tests/storage/test_phrase_index.cpp
@@ -7,7 +7,7 @@ size_t bench_times = 100000;
int main(int argc, char * argv[]){
PhraseItem phrase_item;
- utf16_t string1 = 2;
+ ucs4_t string1 = 2;
ChewingKey key1 = ChewingKey(CHEWING_CH, CHEWING_ZERO_MIDDLE, CHEWING_ENG);
ChewingKey key2 = ChewingKey(CHEWING_SH, CHEWING_ZERO_MIDDLE, CHEWING_ANG);
@@ -33,7 +33,7 @@ int main(int argc, char * argv[]){
assert(phrase_item.get_unigram_frequency() == 0);
- utf16_t string2;
+ ucs4_t string2;
phrase_item.get_phrase_string(&string2);
assert(string1 == string2);
@@ -106,9 +106,9 @@ int main(int argc, char * argv[]){
assert( item2.get_phrase_length() == 14);
assert( item2.get_n_pronunciation() == 1);
- gunichar2 buf[1024];
+ ucs4_t buf[1024];
item2.get_phrase_string(buf);
- char * string = g_utf16_to_utf8( buf, 14, NULL, NULL, NULL);
+ char * string = g_ucs4_to_utf8( buf, 14, NULL, NULL, NULL);
printf("%s\n", string);
g_free(string);