ICU-22201 Add test to verify ICU-22043 on Java

This commit is contained in:
Frank Tang 2022-06-22 09:05:15 -07:00 committed by Frank Yung-Fong Tang
parent da5d3e0c5b
commit 3654e945b6

View file

@ -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