blob: e13c497cb20ab5153df91a17ecb605dac16c9d58 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2003, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/**
* CollationMonkeyTest is a third level test class. This tests the random
* substrings of the default test strings to verify if the compare and
* sort key algorithm works correctly. For example, any string is always
* less than the string itself appended with any character.
*/
#ifndef _MNKYTST
#define _MNKYTST
#include "unicode/utypes.h"
#if !UCONFIG_NO_COLLATION
#include "tscoll.h"
class CollationMonkeyTest: public IntlTestCollator {
public:
// If this is too small for the test data, just increase it.
// Just don't make it too large, otherwise the executable will get too big
enum EToken_Len { MAX_TOKEN_LEN = 16 };
CollationMonkeyTest();
virtual ~CollationMonkeyTest();
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
// utility function used in tests, returns absolute value
int32_t checkValue(int32_t value);
// perform monkey tests using Collator::compare
void TestCompare(/* char* par */);
// perform monkey tests using CollationKey::compareTo
void TestCollationKey(/* char* par */);
void TestRules(/* char* par */);
private:
void report(UnicodeString& s, UnicodeString& t, int32_t result, int32_t revResult);
const UnicodeString source;
Collator *myCollator;
};
#endif /* #if !UCONFIG_NO_COLLATION */
#endif
|