scuffed-code/icu4c/source/test/intltest/rndmcoll.h
George Rhoten bd60fe525d ICU-4235 Fix various porting, configuration and style issues.
Don't use namespaces.
Use UBool instead of bool.
Use FALSE instead of false.
Use TRUE instead of true.
Use the correct copyright date.
Use UCONFIG_NO_COLLATION consistently.
... and a few other issues.

X-SVN-Rev: 18378
2005-08-02 17:55:57 +00:00

31 lines
756 B
C++

/********************************************************************
* COPYRIGHT:
* Copyright (c) 2005-2005, 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 );
virtual ~RandomCollatorTest(){}
void Test();
void Test2();
};
#endif /* #if !UCONFIG_NO_COLLATION */
#endif /* _RANDCOLL */