欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

junit整合Spring

程序员文章站 2022-03-14 10:29:01
...

作为一个小萌新,今天看文章发现junit可以实现对Spring的测试,对于一些复杂的操作都进行了不少的简化
首先要对希望测试的类添加单元junit整合Spring
junit整合Spring
点击选择要测试的方法,完成

import org.junit.Test;
import javax.annotation.Resource;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.dong.service.UserService;
import com.dong.po.User;

@RunWith(value=SpringJUnit4ClassRunner.class)//使用spring和junit整合的运行器
@ContextConfiguration(locations= {"classpath:beans.xml"})//指定spring的配置文件的位置
public class UserServiceTest {

    @Resource
    UserService userService;

    @Test
    public void Test() {
        //方法中的内容
    }

}
相关标签: 框架