考虑问题{{3}}。 类中的方法中只有一种方法包含System.getenv,需要对其进行模拟。问题是我需要使用jacoco代码覆盖率,由于使用powemock,我得到的覆盖率为0%。有没有办法在有或没有powermock的情况下模拟系统并获得代码覆盖率?
答案 0 :(得分:1)
查看JUnit 4的System Rules,尤其是EnvironmentVariables。
public class EnvironmentVariablesTest {
@Rule
public final EnvironmentVariables environmentVariables = new EnvironmentVariables();
@Test
public void setEnvironmentVariable() {
environmentVariables.set("name", "value");
assertEquals("value", System.getenv("name"));
}
}
答案 1 :(得分:0)
添加到@Roland Weisleder。
EnvironmnetVariables不是junit的一部分。您需要添加以下依赖项
https://stefanbirkner.github.io/system-rules/download.html
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-rules</artifactId>
<version>1.19.0</version>
<scope>test</scope>
</dependency>