org.junit.platform.commons.util.ReflectionUtils.getDefaultClassLoader()Ljava/lang/ClassLoader;

来源:互联网 发布:整站源码下载工具 编辑:程序博客网 时间:2024/06/05 07:56

是Junit版本问题

pom.xml引入的是

<dependency>  <groupId>junit</groupId>  <artifactId>junit</artifactId>  <version>4.12</version>  <scope>test</scope></dependency>

但是程序视图采用Junit5运行,所以报错

将pom.xml里面的

<dependency>

<groupId>org.junit.jupiter</groupId>

<artifactId>junit-jupiter-api</artifactId>

<version>RELEASE</version>

</dependency>

删除就好用了

阅读全文
0 0
原创粉丝点击