2

我尝试为我的 playframework 应用程序配置依赖项以使用powemock

在我的dependencies.yml中:

要求:

- play
...
- org.powermock -> powermock-mockito-release-full 1.4.9
- org.powermock -> powermock-module-junit4 1.4.9
...

我有测试课:

import org.powermock.modules.junit4.**PowerMockRunner**;

import static org.mockito.Mockito.mock;
import static play.test.FunctionalTest.GET;

@RunWith(PowerMockRunner.class)
@PrepareForTest(MyStaticTest.MyStaticClass.class)
public class TagsTest extends FunctionalTest {

 ...
}

问题是:我的代码看不到* PowerMockRunner * 类。

另外,阅读这篇文章:

我也将此代码添加到dependencies.yml中(但它对我没有帮助):

repositories:
    ...
    - sonatype:
        type: http
        artifact: "https://oss.sonatype.org/content/repositories/releases"

那么,如何配置我的依赖项来解决?

4

1 回答 1

3

尝试使用“powermock-api-mockito”而不是“powermock-mockito-release-full”。

于 2011-11-17T18:25:52.133 回答