后台開發過程中,寫單元測試是非常重要的,對於我們開發人員調試、排查問題是很方便的,
但是我們在啟動項目的時候,需要將所以類交給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()); } }