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-2002,2008, International Business Machines Corporation and 6 * others. All Rights Reserved. 7 ********************************************************************/ 8 /******************************************************************************** 9 * 10 * File CDTRGTST.H 11 * 12 * Modification History: 13 * Name Description 14 * Madhu Katragadda Converted to C 15 ********************************************************************************* 16 */ 17 /* REGRESSION TEST FOR DATE FORMAT */ 18 #ifndef _CDTFRRGSTST 19 #define _CDTFRRGSTST 20 21 #include "unicode/utypes.h" 22 #include "unicode/udat.h" 23 24 #if !UCONFIG_NO_FORMATTING 25 26 #include "cintltst.h" 27 28 /** 29 * DateFormat Regression tests 30 **/ 31 32 void Test4029195(void); 33 void Test4056591(void); 34 void Test4059917(void); 35 void Test4060212(void); 36 void Test4061287(void); 37 void Test4073003(void); 38 void Test4162071(void); 39 void Test714(void); 40 void Test_GEec(void); 41 42 /** 43 * test subroutine 44 **/ 45 void aux917(UDateFormat *fmt, UChar* str ); 46 47 /** 48 * test subroutine used by the testing functions 49 **/ 50 UChar* myFormatit(UDateFormat* datdef, UDate d1); 51 52 #endif /* #if !UCONFIG_NO_FORMATTING */ 53 54 #endif 55