此处不允许注释

时间:2018-07-23 12:22:33

标签: intellij-idea annotations

Test annotation are not allowed here

当我构建测试JUnit以便在IDEA中进行测试时,我面临上面的问题,我不知道为什么。

2 个答案:

答案 0 :(得分:1)

显示 annotation not allowed 错误是因为您的类不包含方法,因此无法找到将要使用的位置,因此显示此错误。

我添加了小代码片段。只需复制和粘贴然后试试这个...它会工作。

package com.sel1;
import org.junit.BeforeClass;
import org.junit.Test;

public class JunitTest1 {

@BeforeClass

public void Testme()
{
    System.out.println("test");
}

}

答案 1 :(得分:0)

绝对与语法有关。就我而言,我在方法签名中缺少方括号(facepalm!)。完成方法后,该问题应得到解决。