亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何中SpringBoot中添加一個單元測試

發布時間:2020-11-26 17:43:41 來源:億速云 閱讀:162 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關如何中SpringBoot中添加一個單元測試,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

首先我們來添加單元測試所需要的jar

<dependency> 
  <groupId>org.springframework.boot</groupId> 
  <artifactId>spring-boot-starter-test</artifactId> 
</dependency>

接著我們寫了一個單元測試的demo

package com.zkn.learnspringboot.service.test; 
 
import com.zkn.learnspringboot.FirstExample; 
import com.zkn.learnspringboot.service.PersonService; 
import org.junit.Test; 
import org.junit.runner.RunWith; 
import org.springframework.beans.factory.annotation.Autowired; 
import org.springframework.boot.test.context.SpringBootTest; 
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; 
 
/** 
 * Created by wb-zhangkenan on 2016/11/18. 
 */ 
@RunWith(SpringJUnit4ClassRunner.class) 
@SpringBootTest(classes = FirstExample.class) 
public class TestService extends BaseTestService{ 
  @Autowired 
  private PersonService personService; 
  @Test 
  public void testSys() { 
    System.out.println(personService.getPersonDomain().toString()); 
  } 
 
}

然后我們run一下,一個單元測試就搞定了。

另外:@RunWith和@SprintBootTest這兩個注解上都有@Inherited這個注解,所以我們可以定義一個單元測的父類,然后所有的單元測試類繼承這個父類就行了。如下所示:

package com.zkn.learnspringboot.service.test; 
 
import com.zkn.learnspringboot.FirstExample; 
import org.junit.runner.RunWith; 
import org.springframework.boot.test.context.SpringBootTest; 
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; 
 
/** 
 * Created by zkn on 2016/11/20. 
 */ 
@RunWith(SpringJUnit4ClassRunner.class) 
@SpringBootTest(classes = FirstExample.class) 
public class BaseTestService { 
 
}
package com.zkn.learnspringboot.service.test; 
 
import com.zkn.learnspringboot.service.PersonService; 
import org.junit.Test; 
import org.springframework.beans.factory.annotation.Autowired; 
 
/** 
 * Created by wb-zhangkenan on 2016/11/18. 
 */ 
 
public class TestService extends BaseTestService{ 
  @Autowired 
  private PersonService personService; 
  @Test 
  public void testSys() { 
    System.out.println(personService.getPersonDomain().toString()); 
  } 
 
}

如果你用的SpringBoot是1.4.0之前的話,所用的注解稍有不同。你需要把@SpringBootTest注解換成@SpringApplicationConfiguration和@WebAppConfiguration。

關于如何中SpringBoot中添加一個單元測試就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新晃| 舒城县| 西峡县| 时尚| 昌图县| 巴林左旗| 神池县| 波密县| 镇巴县| 磐石市| 宁晋县| 正阳县| 应城市| 会泽县| 昆山市| 呈贡县| 抚宁县| 鹤岗市| 九台市| 蒙城县| 西平县| 漯河市| 大新县| 田阳县| 三门峡市| 江都市| 滨海县| 武邑县| 城固县| 五华县| 远安县| 佛教| 保靖县| 文成县| 临夏县| 西华县| 隆尧县| 北川| 宝丰县| 监利县| 定日县|