| OLD | NEW |
| (Empty) |
| 1 /******************************************************************** | |
| 2 * COPYRIGHT: | |
| 3 * Copyright (c) 1997-2014, International Business Machines Corporation and | |
| 4 * others. All Rights Reserved. | |
| 5 ********************************************************************/ | |
| 6 | |
| 7 #ifndef _DATEFORMATREGRESSIONTEST_ | |
| 8 #define _DATEFORMATREGRESSIONTEST_ | |
| 9 | |
| 10 #include "unicode/utypes.h" | |
| 11 | |
| 12 #if !UCONFIG_NO_FORMATTING | |
| 13 | |
| 14 #include "unicode/unistr.h" | |
| 15 #include "unicode/smpdtfmt.h" | |
| 16 #include "caltztst.h" | |
| 17 | |
| 18 /** | |
| 19 * Performs regression test for DateFormat | |
| 20 **/ | |
| 21 class DateFormatRegressionTest: public CalendarTimeZoneTest { | |
| 22 // IntlTest override | |
| 23 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par
); | |
| 24 public: | |
| 25 | |
| 26 void Test4029195(void); | |
| 27 void Test4052408(void); | |
| 28 void Test4056591(void); | |
| 29 void Test4059917(void); | |
| 30 void aux917( SimpleDateFormat *fmt, UnicodeString& str ); | |
| 31 void Test4060212(void); | |
| 32 void Test4061287(void); | |
| 33 void Test4065240(void); | |
| 34 void Test4071441(void); | |
| 35 void Test4073003(void); | |
| 36 void Test4089106(void); | |
| 37 void Test4100302(void); | |
| 38 void Test4101483(void); | |
| 39 void Test4103340(void); | |
| 40 void Test4103341(void); | |
| 41 void Test4104136(void); | |
| 42 void Test4104522(void); | |
| 43 void Test4106807(void); | |
| 44 void Test4108407(void); | |
| 45 void Test4134203(void); | |
| 46 void Test4151631(void); | |
| 47 void Test4151706(void); | |
| 48 void Test4162071(void); | |
| 49 void Test4182066(void); | |
| 50 void Test4210209(void); | |
| 51 void Test714(void); | |
| 52 void Test1684(void); | |
| 53 void Test5554(void); | |
| 54 void Test9237(void); | |
| 55 void TestParsing(void); | |
| 56 void TestT10334(void); | |
| 57 void TestT10619(void); | |
| 58 void TestT10855(void); | |
| 59 void TestT10906(void); | |
| 60 }; | |
| 61 | |
| 62 #endif /* #if !UCONFIG_NO_FORMATTING */ | |
| 63 | |
| 64 #endif // _DATEFORMATREGRESSIONTEST_ | |
| 65 //eof | |
| OLD | NEW |