In my test case, I need test time sensitive method, in that method we\'re using java 8 class LocalDate, it is not Joda.
What can I do to change time
You can refactor you code to make it test-friendly, for example, replace all invocations of LocalDate.now() with invocation of some method of custom mockable non-static class.
LocalDate.now()
Alternatively, you can use PowerMock's mockStatic.