0
我有一個ScheduledExecutorService設置爲每隔幾分鐘更新一些對象。ScheduledExecutorService內的測試代碼
我想測試更新是否發生,當然還有一些邊緣情況。
scheduler.scheduleAtFixedRate(()-> {
//Code to update objects
}, 0, 4, TimeUnit.MINUTES);
我不知道我將如何去測試,也許嘲笑他,所以我不必依靠的Thread.sleep