Powermock mockstatic不能继承最终类

时间:2016-08-26 17:38:55

标签: java eclipse maven junit powermock

我正试图嘲笑最后一堂课

PowerMockito.mockStatic(TestFinalClass.class);

当我运行单个junit并将javaagent添加到我的VM参数时,它正在从我的eclipse开始工作

-javaagent:{path}/powermock-module-javaagent-1.6.4.jar

但是当我尝试使用maven build命令从命令行运行所有测试用例时,我仍然得到“无法继承最终类”

以下是我的pom.xml片段

            <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.4</version>
            <configuration>
                <argLine>-javaagent:{path}/powermock-module-javaagent-1.6.4.jar</argLine>
            </configuration>
        </plugin>

3 个答案:

答案 0 :(得分:25)

package test;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

@RunWith(PowerMockRunner.class)
@PrepareForTest(FinalClass.class)
public class Tests {
    @Test
    public void test() {
    PowerMockito.mockStatic(FinalClass.class);
    }
}

这对我有用。如果添加“PowerMockRunner”和“PrepareForTest”注释,则不需要使用额外的vm参数。

答案 1 :(得分:0)

""

答案 2 :(得分:0)

我使用 JaCoCo 获得了代码覆盖率,需要在测试类代码中对其进行一些更改。如下:

  1. 我删除了@RunWith 注释

  2. 添加了@Rule 和 PowerMockRule 类

  3. 在@PrepareForTest 中提到了 Final 和 Static 类

    @PrepareForTest(FinalClass.class, StaticClass.class)

    公共类测试{

    @Rule
    public PowerMockRule rule = new PowerMockRule();
    
    @Test
    public void test() {
        PowerMockito.mockStatic(FinalClass.class);
        PowerMockito.mockStatic(StaticClass.class);
    }
    

    }

还在surefire中添加了argline以克服模拟时的最终类问题。

<configuration>
                <argLine>-javaagent:{path}/powermock-module-javaagent-1.6.4.jar</argLine>
            </configuration>