scuffed-code/icu4c/source/test/intltest/currcoll.h

49 lines
938 B
C
Raw Normal View History

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2001, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
1999-08-16 21:50:52 +00:00
/**
* Collation currency tests.
* (It's important to stay current!)
*/
#ifndef _CURRCOLL
#define _CURRCOLL
#ifndef _UTYPES
#include "unicode/utypes.h"
1999-08-16 21:50:52 +00:00
#endif
#ifndef _COLL
#include "unicode/coll.h"
1999-08-16 21:50:52 +00:00
#endif
#ifndef _COLEITR
#include "unicode/coleitr.h"
1999-08-16 21:50:52 +00:00
#endif
#ifndef _INTLTEST
#include "intltest.h"
#endif
#ifndef _UNISTR
#include "unicode/unistr.h"
1999-08-16 21:50:52 +00:00
#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);
1999-08-16 21:50:52 +00:00
void currencyTest(/*char *par*/);
1999-08-16 21:50:52 +00:00
};
#endif