作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最近的 groovy 升级带来了 JUnit5,导致 Eclipse 想要在 JUnit5 下运行每个测试。我可以通过运行配置并告诉 Eclipse 使用 JUnit4 来解决这个问题,但这会变得乏味。
是否可以告诉 Eclipse 始终将 JUnit4 用于特定项目,包括新测试?
最佳答案
您只能在 Eclipse 中指定配置文件并激活它。
示例(假设您的问题是由于依赖于 groovy-all
引起的):
<profiles>
<profile>
<id>eclipse-groovy-no-junit5</id>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${groovy.groupId}</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>${groovy.groupId}</groupId>
<artifactId>groovy-test-junit5</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
</profile>
</profiles>
然后去
Project -> Properties -> Maven -> Active Maven Profiles
eclipse-groovy-no-junit5
.
groovy.groupId
设置为
org.codehaus.groovy
(它是一个变量,因为在 4.x 中会被
org.apache.groovy
替换)和
groovy.version
设置为
3.0.8
.
<activation>
<activeByDefault>false</activeByDefault>
</activation>
...但无论如何它都是默认值。
关于java - 当类只包含 JUnit4 注释时,使 Eclipse 默认为 JUnit4 而不是 JUnit5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55032252/
我是一名优秀的程序员,十分优秀!