}
public void test_Amman_2006() {
DateTimeZone zone = DateTimeZone.forID("Asia/Amman");
DateTime dt = new DateTime(2006, 3, 1, 0, 0, zone);
long next = zone.nextTransition(dt.getMillis());
assertEquals(next, new DateTime(2006, 3, 31, 0, 0, DateTimeZone.forOffsetHours(2)).getMillis());
}
}