Intellij无法识别TestNG功能

时间:2016-07-12 07:32:53

标签: java maven intellij-idea

我正在尝试使用TestNG来测试我的Java代码。 TestNG-plugin安装在IntelliJ中,依赖项:

public(id: number) { }

已被添加到Maven。但是,当我在类中编写“@Test”时,IntelliJ会给出错误消息:“无法解析符号'Test'。

也无法识别导入org.testng.annotations.Test。看起来Intellij似乎忽略了Maven依赖。

这是项目结构和错误:

enter image description here

我应该用TestNG做更多的事情,而不仅仅是添加Maven依赖项吗?

1 个答案:

答案 0 :(得分:1)

  1. 运行mvn clean

  2. scope的{​​{1}}设置为testng,即:

    test
  3. 运行<dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.12</version> <scope>test</scope> </dependency>