【发布时间】:2018-10-10 09:57:07
【问题描述】:
【问题讨论】:
标签: eclipse junit5 eclipse-oxygen junit-jupiter
【问题讨论】:
标签: eclipse junit5 eclipse-oxygen junit-jupiter
也许你的 pom 中缺少平台。
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit.platform.version}</version>
<scope>test</scope>
</dependency>
【讨论】: