spring項目如何寫單元測試


后台開發過程中,寫單元測試是非常重要的,對於我們開發人員調試、排查問題是很方便的,

但是我們在啟動項目的時候,需要將所以類交給spring托管,在單元測試中需要怎么實現類的注入呢?

直接上圖

 

 

 

 

 

繼續上代碼

 

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;


@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations={ "classpath:application-context.xml", "classpath:application-database.xml", "classpath:application-redis.xml"}) public class PartRelevanceTest { @Resource private PartRelevanceMapper partRelevanceMapper; @Test public void selectTypeNumOne() { PartRelevanceTypeNum record = new PartRelevanceTypeNum(); record.setRelCode("2222112"); record.setType("2"); PartRelevanceTypeNum typeNum = partRelevanceMapper.selectTypeNumOne(record); System.out.println(typeNum==null?"typeNum-數據為空":typeNum.toString()); } }

  

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM