]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | ********************************************************************** | |
2ca993e8 | 3 | * Copyright (C) 1998-2016, International Business Machines Corporation |
b75a7d8f A |
4 | * and others. All Rights Reserved. |
5 | ********************************************************************** | |
6 | */ | |
7 | /*********************************************************************** | |
8 | * Date Name Description | |
9 | * 12/14/99 Madhu Creation. | |
10 | ***********************************************************************/ | |
11 | /** | |
12 | * IntlTestRBBI is the medium level test class for RuleBasedBreakIterator | |
13 | */ | |
14 | ||
15 | #include "unicode/utypes.h" | |
16 | ||
2ca993e8 | 17 | #if !UCONFIG_NO_BREAK_ITERATION && !UCONFIG_NO_REGULAR_EXPRESSIONS |
b75a7d8f | 18 | |
2ca993e8 | 19 | #include "intltest.h" |
b75a7d8f A |
20 | #include "itrbbi.h" |
21 | #include "rbbiapts.h" | |
22 | #include "rbbitst.h" | |
2ca993e8 | 23 | #include "rbbimonkeytest.h" |
4388f060 A |
24 | |
25 | ||
b75a7d8f A |
26 | void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) |
27 | { | |
2ca993e8 A |
28 | if (exec) { |
29 | logln("TestSuite RuleBasedBreakIterator: "); | |
b75a7d8f | 30 | } |
2ca993e8 A |
31 | TESTCASE_AUTO_BEGIN; |
32 | TESTCASE_AUTO_CLASS(RBBIAPITest); | |
33 | TESTCASE_AUTO_CLASS(RBBITest); | |
34 | #if !UCONFIG_NO_FORMATTING | |
35 | TESTCASE_AUTO_CLASS(RBBIMonkeyTest); | |
36 | #endif | |
37 | TESTCASE_AUTO_END; | |
b75a7d8f A |
38 | } |
39 | ||
2ca993e8 | 40 | #endif /* #if !UCONFIG_NO_BREAK_ITERATION && !UCONFIG_NO_REGULAR_EXPRESSIONS */ |