我是靠谱客的博主 柔弱歌曲,这篇文章主要介绍基于spring的unittest,现在分享给大家,希望可以做个参考。

有网友反应,看了http://blog.csdn.net/hongbo781202/archive/2005/04/27/365382.aspx后,还是不知道怎么做spring的unit test,下面把 自己写的抽象类给出来,应该容易懂了。

public abstract class AbstractTest extends AbstractTransactionalDataSourceSpringContextTests{
 public String[] getConfigLocations()
 {
  String[] config= new String[]{"frame-applicationContext.xml"};
  
  return config;
 }
 protected RoleInfoService roleInfoService;
 protected OperationInfoService operationInfoService;
 protected UserBaseInfoService userService;
 protected void onSetUpInTransaction() throws Exception {
        super.onSetUpInTransaction();
        //this.setPopulateProtectedVariables(true);
        roleInfoService = (RoleInfoService) this.applicationContext.getBean("roleInfoService");
        operationInfoService=(OperationInfoService)this.applicationContext.getBean("operationInfoService");
        userService = (UserBaseInfoService) this.applicationContext.getBean("userBaseInfoService");

    }

    protected void onTearDownInTransaction() {
     roleInfoService = null;
     operationInfoService=null;
     userService = null;
    }
}

每个service的独立的unit test,只要继承该类就可以了。

最后

以上就是柔弱歌曲最近收集整理的关于基于spring的unittest的全部内容,更多相关基于spring内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(136)

评论列表共有 0 条评论

立即
投稿
返回
顶部