此位置不允许使用@RunWith(PowerMockRunner.class)

时间:2016-07-08 18:20:50

标签: junit mockito junit4 powermock powermockito

我收到以下错误

The annotation @RunWith is disallowed for this location

我有以下导入。

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

@RunWith(PowerMockRunner.class)
@PrepareForTest(QueryValidator.class)
@Test
public void testValidateIds2() { ... }

造成这种情况的原因是什么?我如何摆脱这种情况。

1 个答案:

答案 0 :(得分:2)

想象@RunWith(PowerMockRunner.class)是一个类级别的注释,需要在类的顶部,而不是方法。