Spring MVC 结合Junit4

Spring 3.0的测试框架可以和Junit4 整合, 通过Junit4的@RunWith注解指定SpringJunit4ClassRunner.class 的测试运行器,该运行器是spring 提供的,可以将Spring容器和Junit4测试框架整合。@ContextConfiguration也是Spring提供的,用于指定Spring的配置文件。

在测试类中可以使用spring的@Autowired将Spring容器中的Bean注入到测试类中来。在测试方法通过Junit4的@Test注解即可将方法标注为测试方法。看下面的例子:

@RunWith(SpringJUnit4ClassRunner.class)//基于Junit4的Spring测试框架
@ContextConfiguration(location={"/applicationContext.xml"})//启动Spring容器
public class TestUserService{
    
    //注入Spring容器中的bean
    @AutoWired
    private UserService userService;
    
    @Test
    public void hasMatchUser(){
        boolean b1 = userService.hasMatchUser("admin","123456");
        boolean b2 = userSerive.hasMatchUser("admin","11111");
    }
...
}
//<span style="font-family: Arial, Helvetica, sans-serif;">在MyEclipse中,通过Run As -> JUnit Test 运行该测试用例以检验业务类方法的正确性。</span><pre name="code" class="java">

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值