]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
3 | /******************************************************************** |
4 | * COPYRIGHT: | |
51004dcb | 5 | * Copyright (c) 1997-2013, International Business Machines Corporation and |
b75a7d8f A |
6 | * others. All Rights Reserved. |
7 | ********************************************************************/ | |
8 | ||
9 | #ifndef _INTLTESTDATEFORMATSYMBOLS | |
10 | #define _INTLTESTDATEFORMATSYMBOLS | |
11 | ||
12 | #include "unicode/utypes.h" | |
13 | ||
14 | #if !UCONFIG_NO_FORMATTING | |
15 | ||
16 | #include "intltest.h" | |
17 | ||
18 | /** | |
19 | * Tests for DateFormatSymbols | |
20 | **/ | |
21 | class IntlTestDateFormatSymbols: public IntlTest { | |
22 | void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ); | |
23 | ||
24 | private: | |
25 | /** | |
26 | * Test the API of DateFormatSymbols; primarily a simple get/set set. | |
27 | */ | |
73c04bcf | 28 | void TestSymbols(/* char *par */); |
b75a7d8f A |
29 | /** |
30 | * Test getMonths. | |
31 | */ | |
32 | void TestGetMonths(void); | |
73c04bcf A |
33 | void TestGetMonths2(void); |
34 | ||
35 | void TestGetWeekdays2(void); | |
36 | void TestGetEraNames(void); | |
51004dcb A |
37 | void TestGetSetSpecificItems(void); |
38 | ||
39 | UBool UnicodeStringsArePrefixes(int32_t count, int32_t prefixLen, const UnicodeString *prefixArray, const UnicodeString *baseArray); | |
b75a7d8f A |
40 | }; |
41 | ||
42 | #endif /* #if !UCONFIG_NO_FORMATTING */ | |
43 | ||
44 | #endif |