真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Spring+Junit4進(jìn)行接口測試的示例分析

這篇文章將為大家詳細(xì)講解有關(guān)Spring+Junit4進(jìn)行接口測試的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了達(dá)州免費(fèi)建站歡迎大家使用!

具體實(shí)現(xiàn)代碼如下。

1.配置pom.xml

 
  org.springframework 
  spring-context 
  4.3.2.RELEASE 
 
 
 
  org.springframework 
  spring-test 
  4.3.2.RELEASE 
 
 
 
  junit 
  junit 
  4.12 

2.配置bean

testInterface可以進(jìn)行手動(dòng)配置或自動(dòng)掃描

手動(dòng)配置

spring配置文件配置:

 
  

自動(dòng)掃描

接口實(shí)現(xiàn)類中配置

@Component 
public class TestInterfaceImpl implements TestInterface {

spring配置文件配置

 
 
 
   
  

3.編寫接口測試代碼

import org.junit.Test; 
import org.junit.runner.RunWith; 
import org.springframework.test.context.ContextConfiguration; 
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; 
 
import javax.annotation.Resource; 
 
@RunWith(SpringJUnit4ClassRunner.class) 
@ContextConfiguration(locations = "classpath:applicationContext.xml") 
public class Test { 
 
  @Resource 
  TestInterface testInterface; 
 
  @Test 
  public void test1(){ 
    testInterface.test1(1,2); 
  }

關(guān)于“Spring+Junit4進(jìn)行接口測試的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。


名稱欄目:Spring+Junit4進(jìn)行接口測試的示例分析
URL地址:http://weahome.cn/article/iehecd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部