本篇文章給大家分享的是有關(guān)spring項(xiàng)目中怎么實(shí)現(xiàn)單元測試,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
目前創(chuàng)新互聯(lián)已為數(shù)千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)頁空間、網(wǎng)站運(yùn)營、企業(yè)網(wǎng)站設(shè)計(jì)、江華網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。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è)資訊頻道。