use of java.time.chrono.ThaiBuddhistChronology in project jdk8u_jdk by JetBrains.
the class TCKThaiBuddhistChronology method test_InvalidEras.
//-----------------------------------------------------------------------
// Bad Era for Chronology.date(era,...) and Chronology.prolepticYear(Era,...)
//-----------------------------------------------------------------------
@Test
public void test_InvalidEras() {
// Verify that the eras from every other Chronology are invalid
for (Chronology chrono : Chronology.getAvailableChronologies()) {
if (chrono instanceof ThaiBuddhistChronology) {
continue;
}
List<Era> eras = chrono.eras();
for (Era era : eras) {
try {
ChronoLocalDate date = ThaiBuddhistChronology.INSTANCE.date(era, 1, 1, 1);
fail("ThaiBuddhistChronology.date did not throw ClassCastException for Era: " + era);
} catch (ClassCastException cex) {
// ignore expected exception
;
}
try {
@SuppressWarnings("unused") int year = ThaiBuddhistChronology.INSTANCE.prolepticYear(era, 1);
fail("ThaiBuddhistChronology.prolepticYear did not throw ClassCastException for Era: " + era);
} catch (ClassCastException cex) {
// ignore expected exception
;
}
}
}
}
use of java.time.chrono.ThaiBuddhistChronology in project jdk8u_jdk by JetBrains.
the class TestChronoLocalDate method test_date_checkGenerics_genericsMethod_concreteType.
public void test_date_checkGenerics_genericsMethod_concreteType() {
ThaiBuddhistChronology chrono = ThaiBuddhistChronology.INSTANCE;
ThaiBuddhistDate date = chrono.dateNow();
date = ThaiBuddhistDate.now();
date = processOK(date);
date = processClassOK(ThaiBuddhistDate.class);
date = dateSupplier();
// date = processClassWeird(ThaiBuddhistDate.class); // does not compile (correct)
}
Aggregations