// UnsupportedDateTimeField.roundHalfCeiling(long instant) is
// unsupported and
// should always thrown an UnsupportedOperationException
try {
fieldOne.roundHalfCeiling(1000000L);
assertTrue(false);
} catch (UnsupportedOperationException e) {
assertTrue(true);
}