]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
46f4442e A |
3 | /* |
4 | ******************************************************************************* | |
2ca993e8 | 5 | * Copyright (C) 2007-2015, International Business Machines Corporation and * |
46f4442e A |
6 | * others. All Rights Reserved. * |
7 | ******************************************************************************* | |
8 | */ | |
9 | ||
10 | #ifndef _TIMEZONEFORMATTEST_ | |
11 | #define _TIMEZONEFORMATTEST_ | |
12 | ||
13 | #include "unicode/utypes.h" | |
14 | ||
15 | #if !UCONFIG_NO_FORMATTING | |
16 | ||
17 | #include "intltest.h" | |
18 | ||
19 | class TimeZoneFormatTest : public IntlTest { | |
2ca993e8 | 20 | public: |
46f4442e A |
21 | // IntlTest override |
22 | void runIndexedTest(int32_t index, UBool exec, const char*& name, char* par); | |
23 | ||
24 | void TestTimeZoneRoundTrip(void); | |
25 | void TestTimeRoundTrip(void); | |
51004dcb A |
26 | void TestParse(void); |
27 | void TestISOFormat(void); | |
57a6839d | 28 | void TestFormat(void); |
b331163b | 29 | void TestFormatTZDBNames(void); |
f3c0d7a5 | 30 | void TestFormatCustomZone(void); |
0f5d89e8 | 31 | void TestFormatTZDBNamesAllZoneCoverage(void); |
2ca993e8 A |
32 | |
33 | void RunTimeRoundTripTests(int32_t threadNumber); | |
46f4442e A |
34 | }; |
35 | ||
36 | #endif /* #if !UCONFIG_NO_FORMATTING */ | |
37 | ||
38 | #endif // _TIMEZONEFORMATTEST_ |