我收到以下错误
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() { ... }
造成这种情况的原因是什么?我如何摆脱这种情况。
答案 0 :(得分:2)
想象@RunWith(PowerMockRunner.class)
是一个类级别的注释,需要在类的顶部,而不是方法。