码迷,mamicode.com
首页 > 编程语言 > 详细

Spring之junit测试集成

时间:2019-12-08 15:52:46      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:ack   XML   bean   beans   err   ext   ons   version   extc   

简介

Spring提供spring-test-5.2.1.RELEASE.jar 可以整合junit。
优势:可以简化测试代码(不需要手动创建上下文,即手动创建spring容器)

使用spring和junit集成的步骤

1.导入jar包

技术图片

2.创建包com.igeek.test,创建类SpringTest

通过@RunWith注解,使用junit整合spring
通过@ContextConfiguration注解,指定spring容器的位置

3.通过@Autowired注解,注入需要测试的对象
在这里注意两点:

将测试对象注入到测试用例中

测试用例不需要配置,因为使用测试类运行的时候,会自动启动注解的支持(仅对该测试类启用)

举例说明一下

1.第一种:在applicationContext.xml中不开启注解扫描

配置文件:

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"?????? xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"?????? 
xmlns:context="http://www.springframework.org/schema/context"?????? xmlns:aop="http://www.springframework.org/schema/aop"?????? 
xsi:schemaLocation="http://www.springframework.org/schema/beans??????? 
https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context 
https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop 
https://www.springframework.org/schema/aop/spring-aop.xsd">???  

    <bean id="userService" class="com.igeek.service.impl.UserServiceImpl"></bean>
</beans>

service层:

public class UserServiceImpl implements IUserService {

    @Override??? 
    public void save() {?
        System.out.println("save...");???
    }
}

测试类:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class Test01 {?
    @Autowired???
    private IUserService userService;
    
    @Test??? 
    public void test01(){?
        userService.save();???
    }
}

2.第二种:在applicationContext.xml中开启注解扫描

配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"?????? xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"?????? 
xmlns:context="http://www.springframework.org/schema/context"?????? xmlns:aop="http://www.springframework.org/schema/aop"?????? 
xsi:schemaLocation="http://www.springframework.org/schema/beans??????? 
https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context 
https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop 
https://www.springframework.org/schema/aop/spring-aop.xsd">??

<!--开启注解扫描-->??? 
<context:component-scan base-package="com.igeek"></context:component-scan>
</beans>

service层:

@Service("userService")
public class UserServiceImpl implements IUserService {

    @Override??? 
    public void save() {?
        System.out.println("save...");???
    }
}

测试类:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class Test01 {?
    @Autowired???
    private IUserService userService;
    
    @Test??? 
    public void test01(){?
        userService.save();???
    }
}

Spring之junit测试集成

标签:ack   XML   bean   beans   err   ext   ons   version   extc   

原文地址:https://www.cnblogs.com/hublogs/p/12005596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!