diff options
Diffstat (limited to 'Build/source/libs/icu-xetex/test/intltest/rndmcoll.h')
-rw-r--r-- | Build/source/libs/icu-xetex/test/intltest/rndmcoll.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Build/source/libs/icu-xetex/test/intltest/rndmcoll.h b/Build/source/libs/icu-xetex/test/intltest/rndmcoll.h new file mode 100644 index 00000000000..d216af3b1f7 --- /dev/null +++ b/Build/source/libs/icu-xetex/test/intltest/rndmcoll.h @@ -0,0 +1,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 */ |