Я использую следующую зависимость:
Код: Выделить всё
org.mockito
mockito-junit-jupiter
2.23.0
test
Код: Выделить всё
@ExtendWith(MockitoExtension.class)
public class TestEnvVariable {
@Mock
System system;
@Test
public void shouldExpandPropertyContentToMatchingSysEnv() throws Exception {
when(system.getenv("KEY")).thenReturn("VALUE");
assertEquals("VALUE", "KEY");
}
}
Подробнее здесь: https://stackoverflow.com/questions/647 ... ith-junit5