當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
SpringBoot测试类不需要加@RunWith?
生活随笔
收集整理的這篇文章主要介紹了
SpringBoot测试类不需要加@RunWith?
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
# 在idea中,自動生成的測試類沒有@RunWith運行正常?
在SpringBoot2.2.0以前是JUnit4,在SpringBoot之后是JUnit5。
Juint版本說明
Junit4
<dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.13</version><scope>test</scope> </dependency>Junit5
<dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter</artifactId><version>5.6.2</version><scope>test</scope> </dependency>測試方法:
public class TestDemo {@Testvoid function(){System.out.println("test function");} }對于Junit4而言,所有的測試方法應當是public聲明的,而Junit5不用。只不過不同的版本,這個@Test的類是不同的:
Junit4: org.junit.Test Junit5: org.junit.jupiter.api.Test?
?
?
?
?
?
?
?
?
?
總結
以上是生活随笔為你收集整理的SpringBoot测试类不需要加@RunWith?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JAVA求2019的2019次幂的最后五
- 下一篇: gradle idea java ssm