java – 无法解析PowerMockRunner的符号

前端之家收集整理的这篇文章主要介绍了java – 无法解析PowerMockRunner的符号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我第一次尝试使用Powermock

我使用build.gradle并添加

dependencies {
...
    testCompile 'org.mockito:mockito-all:1.9.5'
    testCompile 'org.powermock:powermock-api-mockito:1.5.5'

}

现在我看看我的测试类,它有:

import org.junit.Before;
import org.junit.runner.RunWith;
import org.mockito.Matchers;
import org.powermock.core.classloader.annotations.PrepareForTest;


@RunWith(PowerMockRunner.class)
@PrepareForTest(GeoUtils.class)

并得到这个错误

@RunWith(PowerMockRunner.class)
             ^
cannot resolve symbol PowerMockRunner

如何解决PrepareForTest而不是PowerMockRunner?

解决方法

您需要导入PowerMockRunner如下:
import org.powermock.modules.junit4.PowerMockRunner;
原文链接:https://www.f2er.com/java/125463.html

猜你在找的Java相关文章