无法在 IntelliJ 中使用 Snakeyaml 运行单元测试

发布于 2024-11-02 15:18:24 字数 498 浏览 0 评论 0原文

我创建了一个 Java 组件,它使用 SnakeYaml 读取 YAML 文件。我使用的环境是带有 Maven 插件的 IntelliJ,我的项目是使用 Maven pom 文件构建的。当我运行 Maven 测试项目时,我的单元测试全部通过。但是,当我直接在 IntelliJ 中运行单元测试时,它们失败了。

具体来说,下面的调用 new Yaml(myConstructor) 会抛出异常:

Constructor myConstructor = new Constructor(....)
Yaml yaml = new Yaml(myConstructor)

具体异常是:

java.lang.NoSuchMethodError: org.yaml.snakeyaml.Yaml.(Lorg/yaml/snakeyaml/constructor/BaseConstructor;)V

有什么想法吗?

I have created a Java component which reads a YAML file using SnakeYaml. The environment I use is IntelliJ with a Maven plug-in and my project is built using a Maven pom file. When I run the Maven test project, my unit tests all pass. However, when I run the unit tests within IntelliJ directly, they fail.

Specifically, the call new Yaml(myConstructor) below is throwing an exception:

Constructor myConstructor = new Constructor(....)
Yaml yaml = new Yaml(myConstructor)

The specific exception is:

java.lang.NoSuchMethodError:
org.yaml.snakeyaml.Yaml.(Lorg/yaml/snakeyaml/constructor/BaseConstructor;)V

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

和我恋爱吧 2024-11-09 15:18:24

发生这种情况是因为 TestNG 插件。对于 IntelliJ 和 Eclipse 来说这都是一个问题。

有两种方法可以轻松解决:

  1. 更新到您选择的 IDE 的最新 TestNG 插件版本,希望发布的版本不会与您的项目所需的版本冲突
  2. 在 Eclipse 中启用“使用项目 TestNG jar”(或 IntelliJ 等效项) 。此设置可在项目特定设置的 TestNG 部分中找到。

第二种方法是首选,因为 TestNG 依赖项将由您的构建工具管理(您使用构建工具吗?!)并且您有更多的灵活性。

This happens because of the TestNG plugin. It's an issue for both IntelliJ and Eclipse.

Easily solved in two ways:

  1. Update to the latest TestNG plugin version for your IDE of choice, hoping that the shipped version does not conflict with the one required for your project
  2. Enable the "Use Project TestNG jar" in Eclipse (or the IntelliJ equivalent). This setting is available in the TestNG section of the project specific settings.

The second way would be preferred because TestNG dependencies will be managed by your build tool (are you using a build tool, right ?!) and you have a lot more flexibility.

无言温柔 2024-11-09 15:18:24

看看 file ->项目结构->工件。可能会有错误。只需单击“修复”按钮即可。还可以尝试从 Maven 配置重新创建 itellij 项目。通常,库范围会出现问题,例如 TEST/PROVIDED

Take look at file -> proj structure -> artifacts. There can be error. Just click at "Fix" button. Also try recreate itellij project from maven configuration. Usually there is troubles with libraries scopes, like TEST/PROVIDED.

撕心裂肺的伤痛 2024-11-09 15:18:24

以下内容对我有用

<dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.2</version>
            <type>jar</type>
            <exclusions>
                <exclusion>
                    <artifactId>snakeyaml</artifactId>
                    <groupId>org.yaml</groupId>
                </exclusion>
            </exclusions>
        </dependency>

The below worked for me

<dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.2</version>
            <type>jar</type>
            <exclusions>
                <exclusion>
                    <artifactId>snakeyaml</artifactId>
                    <groupId>org.yaml</groupId>
                </exclusion>
            </exclusions>
        </dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文