2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2001-03-21 20:09:56 +00:00
|
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
2000-01-15 02:00:06 +00:00
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#ifndef _PARSEPOSITIONIONTEST_
|
|
|
|
#define _PARSEPOSITIONIONTEST_
|
|
|
|
|
|
|
|
#include "intltest.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs test for ParsePosition
|
|
|
|
**/
|
|
|
|
class ParsePositionTest: public IntlTest {
|
|
|
|
// IntlTest override
|
2000-08-14 21:42:36 +00:00
|
|
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
|
1999-08-16 21:50:52 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
void TestParsePosition(void);
|
|
|
|
void TestFieldPosition(void);
|
|
|
|
void TestFieldPosition_example(void);
|
|
|
|
void Test4109023(void);
|
|
|
|
|
|
|
|
protected:
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool failure(UErrorCode status, const char* msg);
|
1999-08-16 21:50:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _PARSEPOSITIONIONTEST_
|
|
|
|
//eof
|