idea intellij对Spring进行单元测试

1、加入Junit4及SpringJUnit4支持



            junit
            junit
            test
        


 
        org.springframework
        spring-test
    

2、创建测试类

(wins:右键菜单------->转到(G)------->测试(E) 可快捷在test包,相同目录下建立相应的测试类)

(ios:IntelliJ IDEA提供了一个快捷操作Cmd + Shift + T作为类和测试之间的导航。同时允许用户在那里创建一个测试类。)

idea intellij对Spring进行单元测试_第1张图片

idea intellij对Spring进行单元测试_第2张图片


3、生成的代码如下:

package net.wll.web.service.impl;

import org.junit.Test;

import static org.junit.Assert.*;

public class DAreasServiceImplTest {

	@Test
	public void testSelectSubDistricts() throws Exception {

	}

	@Test
	public void testSelectSubDistricts0() throws Exception {

	}
}

4、增加Spring-test支持

package net.xuele.activity.service.impl;

import net.xuele.activity.domain.DAreas;
import net.xuele.activity.service.DAreasService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import javax.annotation.Resource;
import java.util.List;

@RunWith(SpringJUnit4ClassRunner.class)
/** 注入相关的配置文件:可以写入多个配置文件 **/
@ContextConfiguration(locations={"classpath:META-INF/spring/application-services.xml",
		"classpath:META-INF/spring/applicationContext-persist.xml"
})
public class DAreasServiceImplTest {
	@Resource
	private DAreasService dAreasService;

	@Test
	public void testSelectSubDistricts0() throws Exception {
		List dAreases =  this.dAreasService.selectSubDistricts0();
		System.out.println(dAreases.size());
	}
}



你可能感兴趣的:(spring,系统测试)