Код: Выделить всё
File file = File createTempFile(“xxx”, “txt”);
Код: Выделить всё
@RunWith(PowerMockRunner.class)
@PrepareForTest({File.class,StringUtils.class})
…
PowerMockito.mockState(File.class);
PowerMockito.when(File.createTempFile(Mockito.any(), Mockito.any()).thenReturn(null);
PowerMockito.mockState(StringUtils.class.class);
PowerMockito.when(StringUtils.isEmpty().thenReturn(false);
Подробнее здесь: https://stackoverflow.com/questions/787 ... ffectively