gpt4 book ai didi

java - Intellij 无法识别的 TestNG 功能

转载 作者:行者123 更新时间:2023-11-30 10:41:56 25 4
gpt4 key购买 nike

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

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
</dependency>

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

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

这是项目结构和错误:

enter image description here

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

最佳答案

  1. 运行mvn clean

  2. 设置testngscopetest,即:

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

关于java - Intellij 无法识别的 TestNG 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38322601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com