Intellij无法识别测试注释

时间:2016-10-11 04:44:07

标签: java maven intellij-idea junit

IntelliJ无法在IDE中识别我的@Test注释。我可以使用IDE和命令行运行我的测试。但是,我无法删除“@Test”

下面的红色,波浪形错误行

错误消息显示“'@Test'不适用于方法”......但它应该是,特别是如果测试运行。

有没有人对此有解决方法?

版本:Intellij IDEA 15.0.6

错误图片

Screenshot

我的POM.xml文件如下所示:

<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>javaForTesters</groupId>
<artifactId>javaForTesters</artifactId>
<version>1.0-SNAPSHOT</version>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
    </plugins>
</build>

2 个答案:

答案 0 :(得分:0)

在maven项目视图中,尝试重新导入所有maven模块。检查构建,执行,部署/构建工具/ maven /导入中的设置,您可能希望自动设置导入。

答案 1 :(得分:0)

如果重新导入不起作用。尝试从命令行编译和打包代码,执行命令'mvn clean package -Pyouprofile'以查看相应的信息。