summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2013-10-21 11:34:55 +0800
committerPeng Wu <alexepico@gmail.com>2013-10-21 11:34:55 +0800
commitcb0fc17dc2f5790090cee691606542ed94611409 (patch)
treeee379264af3f61ff17c525219b2f058696d65982 /tests
parent266b517fab1417ed09bacaaffc34715e12b5caad (diff)
downloadlibzhuyin-cb0fc17dc2f5790090cee691606542ed94611409.tar.gz
libzhuyin-cb0fc17dc2f5790090cee691606542ed94611409.tar.xz
libzhuyin-cb0fc17dc2f5790090cee691606542ed94611409.zip
use zhuyin_internal.h
Diffstat (limited to 'tests')
-rw-r--r--tests/include/test_memory_chunk.cpp2
-rw-r--r--tests/lookup/test_phrase_lookup.cpp2
-rw-r--r--tests/lookup/test_pinyin_lookup.cpp2
-rw-r--r--tests/storage/test_chewing_table.cpp2
-rw-r--r--tests/storage/test_flexible_ngram.cpp2
-rw-r--r--tests/storage/test_ngram.cpp2
-rw-r--r--tests/storage/test_phrase_index.cpp2
-rw-r--r--tests/storage/test_phrase_index_logger.cpp2
-rw-r--r--tests/storage/test_phrase_table.cpp2
-rw-r--r--tests/storage/test_table_info.cpp2
10 files changed, 10 insertions, 10 deletions
diff --git a/tests/include/test_memory_chunk.cpp b/tests/include/test_memory_chunk.cpp
index 9779c8f..acd1690 100644
--- a/tests/include/test_memory_chunk.cpp
+++ b/tests/include/test_memory_chunk.cpp
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
//Test Memory Chunk Functionality
int main(int argc, char * argv[]){
diff --git a/tests/lookup/test_phrase_lookup.cpp b/tests/lookup/test_phrase_lookup.cpp
index e19102d..9e9e6d3 100644
--- a/tests/lookup/test_phrase_lookup.cpp
+++ b/tests/lookup/test_phrase_lookup.cpp
@@ -22,7 +22,7 @@
#include <stdio.h>
#include <locale.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
#include "tests_helper.h"
diff --git a/tests/lookup/test_pinyin_lookup.cpp b/tests/lookup/test_pinyin_lookup.cpp
index d3f63a8..da29e0f 100644
--- a/tests/lookup/test_pinyin_lookup.cpp
+++ b/tests/lookup/test_pinyin_lookup.cpp
@@ -22,7 +22,7 @@
#include "timer.h"
#include <string.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
#include "tests_helper.h"
size_t bench_times = 100;
diff --git a/tests/storage/test_chewing_table.cpp b/tests/storage/test_chewing_table.cpp
index cf0e77c..e3354a1 100644
--- a/tests/storage/test_chewing_table.cpp
+++ b/tests/storage/test_chewing_table.cpp
@@ -21,7 +21,7 @@
#include "timer.h"
#include <string.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
#include "tests_helper.h"
size_t bench_times = 1000;
diff --git a/tests/storage/test_flexible_ngram.cpp b/tests/storage/test_flexible_ngram.cpp
index e875d8c..886d8e2 100644
--- a/tests/storage/test_flexible_ngram.cpp
+++ b/tests/storage/test_flexible_ngram.cpp
@@ -20,7 +20,7 @@
*/
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
int main(int argc, char * argv[]) {
FlexibleSingleGram<guint32, guint32> single_gram;
diff --git a/tests/storage/test_ngram.cpp b/tests/storage/test_ngram.cpp
index f82cf1f..7816acc 100644
--- a/tests/storage/test_ngram.cpp
+++ b/tests/storage/test_ngram.cpp
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
int main(int argc, char * argv[]){
diff --git a/tests/storage/test_phrase_index.cpp b/tests/storage/test_phrase_index.cpp
index 79a3ca4..c360c5b 100644
--- a/tests/storage/test_phrase_index.cpp
+++ b/tests/storage/test_phrase_index.cpp
@@ -1,7 +1,7 @@
#include "timer.h"
#include <stdio.h>
#include <errno.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
#include "tests_helper.h"
size_t bench_times = 100000;
diff --git a/tests/storage/test_phrase_index_logger.cpp b/tests/storage/test_phrase_index_logger.cpp
index e470487..a16dbe0 100644
--- a/tests/storage/test_phrase_index_logger.cpp
+++ b/tests/storage/test_phrase_index_logger.cpp
@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
/* TODO: check whether gb_char.bin and gb_char2.bin should be the same. */
diff --git a/tests/storage/test_phrase_table.cpp b/tests/storage/test_phrase_table.cpp
index a9c8ed5..7fc0a29 100644
--- a/tests/storage/test_phrase_table.cpp
+++ b/tests/storage/test_phrase_table.cpp
@@ -1,6 +1,6 @@
#include "timer.h"
#include <string.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
#include "tests_helper.h"
size_t bench_times = 1000;
diff --git a/tests/storage/test_table_info.cpp b/tests/storage/test_table_info.cpp
index 8aa0bf3..6fa09f3 100644
--- a/tests/storage/test_table_info.cpp
+++ b/tests/storage/test_table_info.cpp
@@ -21,7 +21,7 @@
#include <stdio.h>
#include <locale.h>
-#include "pinyin_internal.h"
+#include "zhuyin_internal.h"
int main(int argc, char * argv[]) {