]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /******************************************************************** |
2 | * COPYRIGHT: | |
3 | * Copyright (c) 1997-2001, International Business Machines Corporation and | |
4 | * others. All Rights Reserved. | |
5 | ********************************************************************/ | |
6 | /******************************************************************************** | |
7 | * | |
8 | * File CDTRGTST.H | |
9 | * | |
10 | * Modification History: | |
11 | * Name Description | |
12 | * Madhu Katragadda Converted to C | |
13 | ********************************************************************************* | |
14 | */ | |
15 | /* REGRESSION TEST FOR DATE FORMAT */ | |
16 | #ifndef _CDTFRRGSTST | |
17 | #define _CDTFRRGSTST | |
18 | ||
19 | #include "unicode/utypes.h" | |
20 | ||
21 | #if !UCONFIG_NO_FORMATTING | |
22 | ||
23 | #include "cintltst.h" | |
24 | ||
25 | /** | |
26 | * DateFormat Regresstion tests | |
27 | **/ | |
28 | ||
29 | void Test4029195(void); | |
30 | void Test4056591(void); | |
31 | void Test4059917(void); | |
32 | void Test4060212(void); | |
33 | void Test4061287(void); | |
34 | void Test4073003(void); | |
35 | void Test4162071(void); | |
36 | void Test714(void); | |
37 | ||
38 | /** | |
39 | * test subroutine | |
40 | **/ | |
41 | void aux917(UDateFormat *fmt, UChar* str ); | |
42 | ||
43 | /** | |
44 | * test subroutine used by the testing functions | |
45 | **/ | |
46 | UChar* myFormatit(UDateFormat* datdef, UDate d1); | |
47 | ||
48 | #endif /* #if !UCONFIG_NO_FORMATTING */ | |
49 | ||
50 | #endif |