blob: d216af3b1f7f9cba8a6ac2dc3b243220c7aead29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/********************************************************************
* COPYRIGHT:
* Copyright (c) 2005-2006, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/**
* RandomCollatorTest is ported from RandomCollatorTest.java of ICU4J
*/
#ifndef _RANDCOLL
#define _RANDCOLL
#include "unicode/utypes.h"
#if !UCONFIG_NO_COLLATION
#include "tscoll.h"
class RandomCollatorTest: public IntlTestCollator {
public:
virtual void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
void Test();
void Test2();
};
#endif /* #if !UCONFIG_NO_COLLATION */
#endif /* _RANDCOLL */
|