OLD | NEW |
1 /************************************************************************* | 1 /************************************************************************* |
2 * Copyright (c) 1999-2013, International Business Machines | 2 * Copyright (c) 1999-2014, International Business Machines |
3 * Corporation and others. All Rights Reserved. | 3 * Corporation and others. All Rights Reserved. |
4 ************************************************************************* | 4 ************************************************************************* |
5 * Date Name Description | 5 * Date Name Description |
6 * 12/15/99 Madhu Creation. | 6 * 12/15/99 Madhu Creation. |
7 * 01/12/2000 Madhu Updated for changed API and added new tests | 7 * 01/12/2000 Madhu Updated for changed API and added new tests |
8 ************************************************************************/ | 8 ************************************************************************/ |
9 | 9 |
10 | 10 |
11 #ifndef RBBITEST_H | 11 #ifndef RBBITEST_H |
12 #define RBBITEST_H | 12 #define RBBITEST_H |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 void TestEndBehaviour(); | 50 void TestEndBehaviour(); |
51 void TestBug4153072(); | 51 void TestBug4153072(); |
52 void TestJapaneseLineBreak(); | 52 void TestJapaneseLineBreak(); |
53 void TestThaiLineBreak(); | 53 void TestThaiLineBreak(); |
54 void TestMixedThaiLineBreak(); | 54 void TestMixedThaiLineBreak(); |
55 void TestMaiyamok(); | 55 void TestMaiyamok(); |
56 void TestMonkey(char *params); | 56 void TestMonkey(char *params); |
57 | 57 |
58 void TestExtended(); | 58 void TestExtended(); |
59 UChar *ReadAndConvertFile(const char *fileName, int &ulen, const char *encod
ing, UErrorCode &status); | 59 UChar *ReadAndConvertFile(const char *fileName, int &ulen, const char *encod
ing, UErrorCode &status); |
60 void executeTest(TestParams *); | 60 void executeTest(TestParams *, UErrorCode &status); |
61 | 61 |
62 void TestWordBreaks(); | 62 void TestWordBreaks(); |
63 void TestWordBoundary(); | 63 void TestWordBoundary(); |
64 void TestLineBreaks(); | 64 void TestLineBreaks(); |
65 void TestSentBreaks(); | 65 void TestSentBreaks(); |
66 void TestBug3818(); | 66 void TestBug3818(); |
67 void TestJapaneseWordBreak(); | 67 void TestJapaneseWordBreak(); |
68 void TestTrieDict(); | 68 void TestTrieDict(); |
69 void TestUnicodeFiles(); | 69 void TestUnicodeFiles(); |
70 void TestBug5775(); | 70 void TestBug5775(); |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 RuleBasedBreakIterator *bi); | 129 RuleBasedBreakIterator *bi); |
130 | 130 |
131 // Run the actual tests for TestTailoredBreaks() | 131 // Run the actual tests for TestTailoredBreaks() |
132 void TBTest(BreakIterator* brkitr, int type, const char *locale, const char*
escapedText, | 132 void TBTest(BreakIterator* brkitr, int type, const char *locale, const char*
escapedText, |
133 const int32_t *expectOffsets, int32_t expectOffsetsCount); | 133 const int32_t *expectOffsets, int32_t expectOffsetsCount); |
134 }; | 134 }; |
135 | 135 |
136 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ | 136 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ |
137 | 137 |
138 #endif | 138 #endif |
OLD | NEW |