单侧@Test注解org.junit.Test和org.junit.jupiter.api.Test 分别在什么场景下使用。
1.org.junit.Test
junit4版本使用
自己项目定义的
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
单侧中不需要springboot环境的,可以直接使用@org.junit.Test 注解方法使用
2.org.junit.jupiter.api.Test
junbit5版本使用
springboot2.5版本带了5版本的junit,如果写单侧加载了springboot项目的时候,建议用org.junit.jupiter.api.Test 刚好匹配
原创:做时间的朋友