2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 1997-2014, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
2000-01-15 02:00:06 +00:00
|
|
|
********************************************************************/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#ifndef _DATEFORMATREGRESSIONTEST_
|
|
|
|
#define _DATEFORMATREGRESSIONTEST_
|
|
|
|
|
2002-09-21 00:43:14 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
|
2001-10-08 23:26:58 +00:00
|
|
|
#include "unicode/unistr.h"
|
|
|
|
#include "unicode/smpdtfmt.h"
|
|
|
|
#include "caltztst.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs regression test for DateFormat
|
|
|
|
**/
|
|
|
|
class DateFormatRegressionTest: public CalendarTimeZoneTest {
|
|
|
|
// 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 Test4029195(void);
|
|
|
|
void Test4052408(void);
|
|
|
|
void Test4056591(void);
|
|
|
|
void Test4059917(void);
|
|
|
|
void aux917( SimpleDateFormat *fmt, UnicodeString& str );
|
|
|
|
void Test4060212(void);
|
|
|
|
void Test4061287(void);
|
|
|
|
void Test4065240(void);
|
|
|
|
void Test4071441(void);
|
|
|
|
void Test4073003(void);
|
|
|
|
void Test4089106(void);
|
|
|
|
void Test4100302(void);
|
|
|
|
void Test4101483(void);
|
|
|
|
void Test4103340(void);
|
|
|
|
void Test4103341(void);
|
|
|
|
void Test4104136(void);
|
|
|
|
void Test4104522(void);
|
|
|
|
void Test4106807(void);
|
|
|
|
void Test4108407(void);
|
|
|
|
void Test4134203(void);
|
|
|
|
void Test4151631(void);
|
|
|
|
void Test4151706(void);
|
|
|
|
void Test4162071(void);
|
1999-12-22 22:57:04 +00:00
|
|
|
void Test4182066(void);
|
|
|
|
void Test4210209(void);
|
2000-11-13 21:03:06 +00:00
|
|
|
void Test714(void);
|
2003-06-06 01:48:24 +00:00
|
|
|
void Test1684(void);
|
2007-06-05 03:17:58 +00:00
|
|
|
void Test5554(void);
|
2012-03-30 21:07:56 +00:00
|
|
|
void Test9237(void);
|
2012-05-09 21:00:40 +00:00
|
|
|
void TestParsing(void);
|
2013-12-18 20:03:44 +00:00
|
|
|
void TestT10334(void);
|
2014-01-14 17:26:35 +00:00
|
|
|
void TestT10619(void);
|
2014-05-16 17:38:08 +00:00
|
|
|
void TestT10855(void);
|
2014-06-13 14:36:05 +00:00
|
|
|
void TestT10906(void);
|
2017-10-03 01:25:20 +00:00
|
|
|
void TestT13380(void);
|
1999-08-16 21:50:52 +00:00
|
|
|
};
|
2002-09-21 00:43:14 +00:00
|
|
|
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#endif // _DATEFORMATREGRESSIONTEST_
|
|
|
|
//eof
|