scuffed-code/icu4c/source/test/intltest/currcoll.h
George Rhoten a15b66a53d ICU-535 fixed some compiler warnings
X-SVN-Rev: 2339
2000-08-23 19:11:16 +00:00

49 lines
938 B
C++

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-1999, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/**
* Collation currency tests.
* (It's important to stay current!)
*/
#ifndef _CURRCOLL
#define _CURRCOLL
#ifndef _UTYPES
#include "unicode/utypes.h"
#endif
#ifndef _COLL
#include "unicode/coll.h"
#endif
#ifndef _COLEITR
#include "unicode/coleitr.h"
#endif
#ifndef _INTLTEST
#include "intltest.h"
#endif
#ifndef _UNISTR
#include "unicode/unistr.h"
#endif
class CollationCurrencyTest: public IntlTest
{
public:
enum EToken_Len { MAX_TOKEN_LEN = 16 };
CollationCurrencyTest();
virtual ~CollationCurrencyTest();
void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
void currencyTest(/*char *par*/);
};
#endif