Spring框架下的单元测试方法

介绍在Spring的框架下,做单元测试的两种办法。

一、使用spring中对Junit框架的整合功能

除了junit4和spring的jar包,还需要spring-test.jar。引入如下依赖:

 

<dependency>
			<groupId>org.springframework</groupId>
  			<artifactId>spring-test</artifactId>
  			<version>3.1.1.RELEASE</version>
		</dependency>


然后测试类需要继承自AbstractJUnit4SpringContextTests,这样就可以在测试类中使用注解简单的注入需要的bean了。

 

 

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:applicationContext.xml"})
public class ReadDaoImplTest extends AbstractJUnit4SpringContextTests{
	@Resource ReadDao readDao;
	
	@Test
	public void getListTest(){
		List<Client> clientList = readDao.getList("client.test", null);
		
		for(Client c:clientList){
			System.out.println(c.getVersionNum());
		}
	}
}

 


二、手动加载spring的配置文件,并启动spring容器

 

public class ReadDaoImplTest {
	
	public  static void main(String[] args){
		ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");

		context.start();

		ReadDao fqaService = (ReadDao) context.getBean("readDao");
		System.out.println(fqaService);
	}
	
}

用这种方式测试,只需要Ctrl+F11就行了

 



 

posted on 2013-08-06 19:35  you Richer  阅读(252)  评论(0编辑  收藏  举报