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

Side by Side Diff: source/test/intltest/dadrcoll.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months 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
« no previous file with comments | « source/test/intltest/convtest.cpp ('k') | source/test/intltest/dadrcoll.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 2002-2009, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 ********************************************************************/
6
7 /**
8 * DataDrivenCollatorTest is a test class that uses data stored in resource
9 * bundles to perform testing. For more details on data structure, see
10 * source/test/testdata/DataDrivenCollationTest.txt
11 */
12
13 #ifndef _INTLTESTDATADRIVENCOLLATOR
14 #define _INTLTESTDATADRIVENCOLLATOR
15
16 #include "unicode/utypes.h"
17
18 #if !UCONFIG_NO_COLLATION && !UCONFIG_NO_FILE_IO
19
20 #include "tscoll.h"
21 #include "uvector.h"
22 #include "unicode/coll.h"
23 #include "unicode/tblcoll.h"
24 #include "unicode/sortkey.h"
25 #include "unicode/schriter.h"
26
27 class TestDataModule;
28 class TestData;
29
30 class SeqElement {
31 public:
32 UnicodeString source;
33 Collator::EComparisonResult relation;
34 };
35
36 class DataDrivenCollatorTest: public IntlTestCollator {
37 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL );
38 public:
39 DataDrivenCollatorTest();
40 virtual ~DataDrivenCollatorTest();
41 protected:
42
43 void DataDrivenTest(char *par);
44 void processSequence(Collator* col, const UnicodeString &sequence);
45 void processTest(TestData *testData);
46 void processArguments(Collator *col, const UChar *start, int32_t optLen);
47 UBool setTestSequence(const UnicodeString &setSequence, SeqElement &el);
48 UBool getNextInSequence(SeqElement &el);
49 private:
50 StringCharacterIterator seq;
51 TestDataModule *driver;
52 UErrorCode status;
53 UVector sequences;
54 RuleBasedCollator *UCA; // needed for opening collators from binary images
55 };
56
57 #endif /* #if !UCONFIG_NO_COLLATION */
58
59 #endif
OLDNEW
« no previous file with comments | « source/test/intltest/convtest.cpp ('k') | source/test/intltest/dadrcoll.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698