gpt4 book ai didi

java - Maven Clojure 插件未运行测试

转载 作者:行者123 更新时间:2023-12-03 23:13:27 25 4
gpt4 key购买 nike

我正在尝试通过使用 Java、Scala 和 Clojure 的 Maven 创建一个简单的项目。我有针对每种语言的简单测试类,但是在运行 mvn test 时,clojure 测试没有执行。

我正在使用 clojure-maven-plugin编译和测试 clojure 代码,当运行 mvn 目标时 mvn clojure:test-with-junit 它按预期运行,我得到以下输出:

[INFO] --- clojure-maven-plugin:1.3.20:test-with-junit (default-cli) @ functional-programming-patterns ---
Tests run: 2, Assertions: 1, Failures: 1, Errors: 0
There are test failures.

不过,当我运行 mvn test 时,我只运行 Java 和 Scala 测试:

Running main.HelloWorldJavaTest
Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.06 sec <<< FAILURE!
Running main.HelloWorldScalaTest
Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.312 sec <<< FAILURE!

Results :

Failed tests: fail(main.HelloWorldJavaTest): expected:<1> but was:<2>

Tests in error:
fail(main.HelloWorldScalaTest): 1 did not equal 2

Tests run: 4, Failures: 1, Errors: 1, Skipped: 0

我的 plugin配置如下:

<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.3.20</version>
<extensions>true</extensions>
<executions>
<execution>
<id>clojure-compile</id>
<phase>compile</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
<configuration>
<sourceDirectories>
<sourceDirectory>src/main/clojure</sourceDirectory>
</sourceDirectories>
</configuration>
</execution>
<execution>
<id>clojure-test</id>
<phase>test</phase>
<goals>
<goal>test-with-junit</goal>
</goals>
<configuration>
<testSourceDirectories>
<testSourceDirectory>src/test/clojure</testSourceDirectory>
</testSourceDirectories>
</configuration>
</execution>
</executions>
<configuration>
<sourceDirectories>
<sourceDirectory>src/main/clojure</sourceDirectory>
</sourceDirectories>
<testSourceDirectories>
<testSourceDirectory>src/test/clojure</testSourceDirectory>
</testSourceDirectories>
</configuration>
</plugin>

我只是想知道插件中是否缺少某些东西导致我的 Clojure 测试在我的 Scala 和 Java 测试都运行时无法运行。

更新

我一直在研究这个,它似乎没有正确绑定(bind)到 mvn test 阶段。当我将插件绑定(bind)的阶段从 test 切换到 process-test-resources 时,测试运行正常。但是,由于我的测试失败,Java 和 Scala 的测试没有运行。

最佳答案

经过反复试验,我发现如果 Java 或 Scala 测试中出现测试失败,Clojure 插件将不会运行。但是,如果所有 Java 和 Scala 测试都通过了,它将按预期运行 Clojure 测试。

我已经登录an issue使用插件。

关于java - Maven Clojure 插件未运行测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29596170/

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