您当前的位置: 首页 >  单元测试

梁云亮

暂无认证

  • 2浏览

    0关注

    1211博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Spring整合Junit单元测试

梁云亮 发布时间:2021-11-09 13:01:01 ,浏览量:2

使用Junit5测试 Maven依赖

	org.junit.jupiter
	junit-jupiter
	5.7.2
	test


    org.springframework
    spring-test
     5.3.8 
    provided


测试代码
@ExtendWith(SpringExtension.class)
@ContextConfiguration("/applicationContext.xml")
public class UserMapperTest {

    @Resource
    private UserMapper userMapper;

    @Test
    public void selectByPrimaryKey() {
        System.out.println(userMapper.selectByPrimaryKey(1L));
    }

}
使用Junit4测试 Maven依赖

  junit
  junit
  4.12
  test

测试代码
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/applicationContext.xml")
public class EmpMapperTest {
    @Autowired
    private EmpMapper empMapper;
    @Test
    public void selectByPrimaryKey() {
        Emp emp = empMapper.selectByPrimaryKey(7788);
        System.out.println(emp);
    }
}
关注
打赏
1665409997
查看更多评论
立即登录/注册

微信扫码登录

0.0441s