Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Side by Side Diff: icu46/source/test/intltest/itrbbi.cpp

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « icu46/source/test/intltest/itrbbi.h ('k') | icu46/source/test/intltest/itrbnf.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 **********************************************************************
3 * Copyright (C) 1998-2001, International Business Machines Corporation
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
17 #if !UCONFIG_NO_BREAK_ITERATION
18
19 #include "itrbbi.h"
20 #include "rbbiapts.h"
21 #include "rbbitst.h"
22
23 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
24 {
25 if (exec) logln("TestSuite RuleBasedBreakIterator: ");
26 switch (index) {
27 case 0:
28 name = "RBBIAPITest";
29 if (exec) {
30 logln("RBBIAPITest--"); logln("");
31 RBBIAPITest test;
32 callTest( test, par );
33 }
34 break;
35
36 case 1:
37 name = "RBBITest";
38 if (exec) {
39 logln("RBBITest---"); logln("");
40 RBBITest test;
41 callTest( test, par );
42 }
43 break;
44 default: name=""; break;
45 }
46 }
47
48 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
OLDNEW
« no previous file with comments | « icu46/source/test/intltest/itrbbi.h ('k') | icu46/source/test/intltest/itrbnf.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698