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