本篇文章給大家分享的是有關(guān)spring項(xiàng)目中怎么實(shí)現(xiàn)單元測試,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
創(chuàng)新互聯(lián)公司2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元阿榮做網(wǎng)站,已為上家服務(wù),為阿榮各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108
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-數(shù)據(jù)為空":typeNum.toString());}}
以上就是spring項(xiàng)目中怎么實(shí)現(xiàn)單元測試,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。