0

Instant.now()用来获取当前的 UTC 毫秒,然后将其截断到最接近的小时。我所有的JUnit人都失败了,因为他们正在占用当前的系统时间。我怎样才能Instant.now()返回一个我可以在JUnit测试中提供的固定值。

public static Long getCurrentHour() {
    Instant now = Instant.now();
    Instant cH = now.truncatedTo(ChronoUnit.HOURS);
    return cH.toEpochMilli();
}
4

1 回答 1

0

你应该模拟静态方法Instant.now()给你一个静态的即时值。
你可以使用PowerMockito它。

@RunWith(PowerMockRunner.class)
@PrepareForTest(Instant.class)
public class TestClass {
    @Mock private Instant mockInstant;

    @Test
    public void getCurrentHour() throws Exception {
        PowerMockito.mockStatic(Instant.class);
        when(Instant.now()).thenReturn(mockInstant);
        when(mockInstant.truncatedTo(ChronoUnit.HOURS)).thenReturn(mockInstant);
        long expectedMillis = 999l;
        when(mockInstant.toEpochMilli()).thenReturn(expectedMillis);

        assertEquals(expectedMillis, YourClass.getCurrentHour());
    }
}
于 2019-10-21T18:23:08.187 回答