SSM框架进行单元测试

ssm框架进行单元测试

  1. @RunWith(SpringJUnit4ClassRunner.class)
    表示继承了SpringJUnit4ClassRunner类
  2. @ContextConfiguration(locations = {“classpath:applicationContext.xml”})
    是spring的配置文件路径,注入配置文件才可以通过依赖关系注入所需要的对象
  3. 需要测试的service层功能


@Resource
	CollegeInfoService service;
	public void insert() {
		CollegeInfo c = new CollegeInfo();
		c.setCollegeName("dddd");
		c.setCollegeNum(1002);
		service.insert(c);
	}

参考](https://www.cnblogs.com/libin6505/p/8383837.html)

你可能感兴趣的:(ssm框架)