forked from unicode-org/icu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincaltst.h
81 lines (63 loc) · 2.31 KB
/
incaltst.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2007, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#ifndef __IntlCalendarTest__
#define __IntlCalendarTest__
#include "unicode/utypes.h"
#if !UCONFIG_NO_FORMATTING
#include "unicode/calendar.h"
#include "unicode/smpdtfmt.h"
#include "caltztst.h"
class IntlCalendarTest: public CalendarTimeZoneTest {
public:
// IntlTest override
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) override;
public:
void TestTypes();
void TestGregorian();
void TestBuddhist();
void TestBuddhistFormat();
void TestBug21043Indian();
void TestBug21044Hebrew();
void TestBug21045Islamic();
void TestBug21046IslamicUmalqura();
void TestTaiwan();
void TestJapanese();
void TestJapaneseFormat();
void TestJapanese3860();
void TestForceGannenNumbering();
void TestPersian();
void TestPersianFormat();
void TestConsistencyGregorian();
void TestConsistencyCoptic();
void TestConsistencyEthiopic();
void TestConsistencyROC();
void TestConsistencyChinese();
void TestConsistencyDangi();
void TestConsistencyBuddhist();
void TestConsistencyEthiopicAmeteAlem();
void TestConsistencyHebrew();
void TestConsistencyIndian();
void TestConsistencyIslamic();
void TestConsistencyIslamicCivil();
void TestConsistencyIslamicRGSA();
void TestConsistencyIslamicTBLA();
void TestConsistencyIslamicUmalqura();
void TestConsistencyPersian();
void TestConsistencyJapanese();
protected:
// Test a Gregorian-Like calendar
void quasiGregorianTest(Calendar& cal, const Locale& gregoLocale, const int32_t *data);
void simpleTest(const Locale& loc, const UnicodeString& expect, UDate expectDate, UErrorCode& status);
void checkConsistency(const char* locale);
int32_t daysToCheckInConsistency;
public: // package
// internal routine for checking date
static UnicodeString value(Calendar* calendar);
};
#endif /* #if !UCONFIG_NO_FORMATTING */
#endif // __IntlCalendarTest__