diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-03-04 13:16:15 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-03-04 13:16:15 +0000 |
commit | 4f735f9c7efbb40316858ad2efed993d860c7461 (patch) | |
tree | 43ccf38db72347f7b31eee44ec13854565310706 /Build/source/libs/icu/icu-49.1/test/intltest/pptest.h | |
parent | a88413671252aebde6da430845232b126d5a71dd (diff) |
icu 49.1 (49_rc)
git-svn-id: svn://tug.org/texlive/trunk@25559 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/icu-49.1/test/intltest/pptest.h')
-rw-r--r-- | Build/source/libs/icu/icu-49.1/test/intltest/pptest.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-49.1/test/intltest/pptest.h b/Build/source/libs/icu/icu-49.1/test/intltest/pptest.h new file mode 100644 index 00000000000..593c9778225 --- /dev/null +++ b/Build/source/libs/icu/icu-49.1/test/intltest/pptest.h @@ -0,0 +1,37 @@ +/******************************************************************** + * COPYRIGHT: + * Copyright (c) 1997-2009, International Business Machines Corporation and + * others. All Rights Reserved. + ********************************************************************/ + +#ifndef _PARSEPOSITIONIONTEST_ +#define _PARSEPOSITIONIONTEST_ + +#include "unicode/utypes.h" + +#if !UCONFIG_NO_FORMATTING + +#include "intltest.h" + + +/** + * Performs test for ParsePosition + **/ +class ParsePositionTest: public IntlTest { + // IntlTest override + void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ); +public: + + void TestParsePosition(void); + void TestFieldPosition(void); + void TestFieldPosition_example(void); + void Test4109023(void); + +protected: + UBool failure(UErrorCode status, const char* msg, UBool possibleDataError=FALSE); +}; + +#endif /* #if !UCONFIG_NO_FORMATTING */ + +#endif // _PARSEPOSITIONIONTEST_ +//eof |