Make unit tests with dates pass in all time zones and with/out DST

后端 未结 2 1178
时光取名叫无心
时光取名叫无心 2021-01-14 08:17

How do I make this unit test pass in all time zones independent of whether DST is active or not?

import static org.junit.Assert.*;
import java.text.SimpleDat         


        
2条回答
  •  旧时难觅i
    2021-01-14 08:35

    Or you can compare the date and put

    @Ignore("Timezone issues")
    @Test
    

    In your unit-test

提交回复
热议问题