OLD | NEW |
1 /*********************************************************************** | 1 /*********************************************************************** |
2 * Copyright (c) 1997-2013, International Business Machines Corporation | 2 * Copyright (c) 1997-2014, International Business Machines Corporation |
3 * and others. All Rights Reserved. | 3 * and others. All Rights Reserved. |
4 ***********************************************************************/ | 4 ***********************************************************************/ |
5 | 5 |
6 #ifndef __CalendarTest__ | 6 #ifndef __CalendarTest__ |
7 #define __CalendarTest__ | 7 #define __CalendarTest__ |
8 | 8 |
9 #include "unicode/utypes.h" | 9 #include "unicode/utypes.h" |
10 | 10 |
11 #if !UCONFIG_NO_FORMATTING | 11 #if !UCONFIG_NO_FORMATTING |
12 | 12 |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 | 233 |
234 /** | 234 /** |
235 * Test cases for [set|get][Repeated|Skipped]WallTimeOption | 235 * Test cases for [set|get][Repeated|Skipped]WallTimeOption |
236 */ | 236 */ |
237 void TestAmbiguousWallTimeAPIs(void); | 237 void TestAmbiguousWallTimeAPIs(void); |
238 void TestRepeatedWallTime(void); | 238 void TestRepeatedWallTime(void); |
239 void TestSkippedWallTime(void); | 239 void TestSkippedWallTime(void); |
240 | 240 |
241 void TestCloneLocale(void); | 241 void TestCloneLocale(void); |
242 | 242 |
| 243 void TestHebrewMonthValidation(void); |
| 244 |
243 /* | 245 /* |
244 * utility methods for TestIslamicUmAlQura | 246 * utility methods for TestIslamicUmAlQura |
245 */ | 247 */ |
246 void setAndTestCalendar(Calendar* cal, int32_t initMonth, int32_t initDay, i
nt32_t initYear, UErrorCode& status); | 248 void setAndTestCalendar(Calendar* cal, int32_t initMonth, int32_t initDay, i
nt32_t initYear, UErrorCode& status); |
247 void setAndTestWholeYear(Calendar* cal, int32_t startYear, UErrorCode& statu
s); | 249 void setAndTestWholeYear(Calendar* cal, int32_t startYear, UErrorCode& statu
s); |
248 | 250 |
| 251 void TestWeekData(void); |
| 252 |
| 253 void TestAddAcrossZoneTransition(void); |
249 }; | 254 }; |
250 | 255 |
251 #endif /* #if !UCONFIG_NO_FORMATTING */ | 256 #endif /* #if !UCONFIG_NO_FORMATTING */ |
252 | 257 |
253 #endif // __CalendarTest__ | 258 #endif // __CalendarTest__ |
OLD | NEW |