1

我在运行 junit 测试类(有问题的版本标题)时偶然发现了这个异常。

在此处输入图像描述

正如我在这个线程中读到的,我必须升级到 Eclipse Oxygen.3,我做到了,但仍然抛出了相同的异常。

4

1 回答 1

3

也许您的 pom.xml 中缺少该平台。

  <dependency>
     <groupId>org.junit.platform</groupId>
     <artifactId>junit-platform-launcher</artifactId>
     <version>${junit.platform.version}</version>
     <scope>test</scope>
  </dependency>
于 2018-04-30T10:15:41.520 回答