1*0e209d39SAndroid Build Coastguard Worker // © 2016 and later: Unicode, Inc. and others. 2*0e209d39SAndroid Build Coastguard Worker // License & terms of use: http://www.unicode.org/copyright.html 3*0e209d39SAndroid Build Coastguard Worker /******************************************************************** 4*0e209d39SAndroid Build Coastguard Worker * COPYRIGHT: 5*0e209d39SAndroid Build Coastguard Worker * Copyright (c) 1997-2002,2008, International Business Machines Corporation and 6*0e209d39SAndroid Build Coastguard Worker * others. All Rights Reserved. 7*0e209d39SAndroid Build Coastguard Worker ********************************************************************/ 8*0e209d39SAndroid Build Coastguard Worker /******************************************************************************** 9*0e209d39SAndroid Build Coastguard Worker * 10*0e209d39SAndroid Build Coastguard Worker * File CDTRGTST.H 11*0e209d39SAndroid Build Coastguard Worker * 12*0e209d39SAndroid Build Coastguard Worker * Modification History: 13*0e209d39SAndroid Build Coastguard Worker * Name Description 14*0e209d39SAndroid Build Coastguard Worker * Madhu Katragadda Converted to C 15*0e209d39SAndroid Build Coastguard Worker ********************************************************************************* 16*0e209d39SAndroid Build Coastguard Worker */ 17*0e209d39SAndroid Build Coastguard Worker /* REGRESSION TEST FOR DATE FORMAT */ 18*0e209d39SAndroid Build Coastguard Worker #ifndef _CDTFRRGSTST 19*0e209d39SAndroid Build Coastguard Worker #define _CDTFRRGSTST 20*0e209d39SAndroid Build Coastguard Worker 21*0e209d39SAndroid Build Coastguard Worker #include "unicode/utypes.h" 22*0e209d39SAndroid Build Coastguard Worker #include "unicode/udat.h" 23*0e209d39SAndroid Build Coastguard Worker 24*0e209d39SAndroid Build Coastguard Worker #if !UCONFIG_NO_FORMATTING 25*0e209d39SAndroid Build Coastguard Worker 26*0e209d39SAndroid Build Coastguard Worker #include "cintltst.h" 27*0e209d39SAndroid Build Coastguard Worker 28*0e209d39SAndroid Build Coastguard Worker /** 29*0e209d39SAndroid Build Coastguard Worker * DateFormat Regression tests 30*0e209d39SAndroid Build Coastguard Worker **/ 31*0e209d39SAndroid Build Coastguard Worker 32*0e209d39SAndroid Build Coastguard Worker void Test4029195(void); 33*0e209d39SAndroid Build Coastguard Worker void Test4056591(void); 34*0e209d39SAndroid Build Coastguard Worker void Test4059917(void); 35*0e209d39SAndroid Build Coastguard Worker void Test4060212(void); 36*0e209d39SAndroid Build Coastguard Worker void Test4061287(void); 37*0e209d39SAndroid Build Coastguard Worker void Test4073003(void); 38*0e209d39SAndroid Build Coastguard Worker void Test4162071(void); 39*0e209d39SAndroid Build Coastguard Worker void Test714(void); 40*0e209d39SAndroid Build Coastguard Worker void Test_GEec(void); 41*0e209d39SAndroid Build Coastguard Worker 42*0e209d39SAndroid Build Coastguard Worker /** 43*0e209d39SAndroid Build Coastguard Worker * test subroutine 44*0e209d39SAndroid Build Coastguard Worker **/ 45*0e209d39SAndroid Build Coastguard Worker void aux917(UDateFormat *fmt, UChar* str ); 46*0e209d39SAndroid Build Coastguard Worker 47*0e209d39SAndroid Build Coastguard Worker /** 48*0e209d39SAndroid Build Coastguard Worker * test subroutine used by the testing functions 49*0e209d39SAndroid Build Coastguard Worker **/ 50*0e209d39SAndroid Build Coastguard Worker UChar* myFormatit(UDateFormat* datdef, UDate d1); 51*0e209d39SAndroid Build Coastguard Worker 52*0e209d39SAndroid Build Coastguard Worker #endif /* #if !UCONFIG_NO_FORMATTING */ 53*0e209d39SAndroid Build Coastguard Worker 54*0e209d39SAndroid Build Coastguard Worker #endif 55