mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-22201 Add test to verify ICU-22043 on Java
This commit is contained in:
parent
da5d3e0c5b
commit
3654e945b6
1 changed files with 21 additions and 0 deletions
|
@ -2619,5 +2619,26 @@ public class CalendarRegressionTest extends com.ibm.icu.dev.test.TestFmwk {
|
|||
TESTS[i][2], cal.getType());
|
||||
}
|
||||
}
|
||||
|
||||
void VerifyNoAssertWithSetGregorianChange(String timezone) {
|
||||
TimeZone zone = TimeZone.getTimeZone(timezone);
|
||||
GregorianCalendar cal = new GregorianCalendar(zone, Locale.ENGLISH);
|
||||
cal.setTime(new Date());
|
||||
// The beginning of ECMAScript time, namely -(2**53)
|
||||
long startOfTime = -9007199254740992L;
|
||||
|
||||
cal.setGregorianChange(new Date(startOfTime));
|
||||
cal.get(Calendar.ZONE_OFFSET);
|
||||
cal.get(Calendar.DST_OFFSET);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void TestAsiaManilaAfterSetGregorianChange22043() {
|
||||
VerifyNoAssertWithSetGregorianChange("Asia/Manila");
|
||||
for (String id : TimeZone.getAvailableIDs()) {
|
||||
VerifyNoAssertWithSetGregorianChange(id);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
//eof
|
||||
|
|
Loading…
Add table
Reference in a new issue