}
@SuppressWarnings("deprecation")
public void testSetTime() {
try {
new NSTimestamp().setTime(new Date().getTime());
fail("SetTime should throw UnsupportedOperationException");
} catch (UnsupportedOperationException e) {
} catch (IllegalStateException e) {
}
}