예제 #1
0
 @Test
 public void plus4() {
   Timestamp time = Timestamp.of(100, 750000000);
   Timestamp newTime = time.plus(TimeDuration.ofSeconds(-5.750));
   assertThat(newTime, equalTo(Timestamp.of(95, 000000000)));
 }