Junit单元测试DEMO

Junit与Spring集成测试Mybatis查询DEMO

package utils;

import java.util.Date;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

import bi.bean.lsxl.LsxlModel;
import bi.bean.lsxl.RequestParamBean;
import bi.service.LsxlService;

public class JunitTest {

	private final static Log logger = LogFactory.getLog(JunitTest.class);
	private LsxlService lsxlService =null;
	
	@Before
	 public void init() {
	  ApplicationContext aCtx = new FileSystemXmlApplicationContext("classpath:spring-*.xml");
	  LsxlService lsxlService =  (LsxlService) aCtx.getBean("lsxlServiceImpl");
	  this.lsxlService = lsxlService;
	 }
	
	@Test
	 public void testInsertAccount() {
		logger.debug("@@@@@@@@@@@@@@@@@@@@@@@@@@Start:"+new Date().toLocaleString());
		RequestParamBean pb = new RequestParamBean();
		pb.setShowflag(1);
		pb.setDateflag("DAY");
		pb.setAreaid("69219");
		pb.setFlag(0);
		pb.setBusinessid("");
		pb.setUsername("chengp");
		pb.setToken("");
		pb.setDate("2014-06-02");
		LsxlModel lsxlModel = lsxlService.selectZbOne(pb, "LSXL");
		logger.debug("@@@@@@@@@@@@@@@@@@@@@@@@@@END:"+new Date().toLocaleString());
	 }
	
}

中国最大租友网站:中国租女友网WWW.1ZUYOU.COM

你可能感兴趣的:(JunitSpring集成,租女友网,Junit单元测试,中国租女友网,JunitDemo)