快速业务通道

Hibernate配置文件在单元测试中的应用 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-25
bm.xml文件,假设分别名为bidirect.inverse.false.hbm.xml和bidirect.inverse.true.hbm.xml。

然后需要写两个不同的测试案例,分别针对两个不同的配置文件进行测试就可以了,这样的好处是,不用针对不同的测试案例修改配置文件,特别是在集成测试的时候,一切都是自动化的,如果每测试一个案例就需要手工去更改配置文件,这肯定是一个失败的测试。 代码模板如下:

FalseInverseTest.java文件

import junit.framework.TestCase; import net.sf.hibernate.HibernateException; import net.sf.hibernate.Session; import net.sf.hibernate.Transaction; import net.sf.hibernate.cfg.Configuration; /** * test false inverse */ public class FalseInverseTest extends TestCase {  private Session session;  private Transaction tx;  protected void setUp() throws Exception {   Configuration cfg = new Configuration().addFile("bidirect.inverse.false.hbm.xml");   session = cfg.buildSessionFactory().openSession();   tx = session.beginTransaction();  }  protected void tearDown() throws Exception {   tx.commit();   session.close();  }  public void testLogic() {   //在此编写测试代码  } }

TrueInverseTest.java文件

import junit.framework.TestCase; import net.sf.hibernate.HibernateException; import net.sf.hibernate.Session; import net.sf.hibernate.Transaction; import net.sf.hibernate.cfg.Configuration; /** * test true inverse */ public class TrueInverseTest extends TestCase {  private Session session;  private Transaction tx;  protected void setUp() throws Exception {   Configuration cfg = new Configuration().addFile("bidirect.inverse.true.hbm.xml");   session = cfg.buildSessionFactory().openSession();   tx = session.beginTransaction();  }  protected void tearDown() throws Exception {   tx.commit();   session.close();  }  public void testLogic() {   //在此编写测试代码  } }

结束语

通过对Hibernate默认的配置文件的加载顺序和Hibernate提供的加载配置文件的方法的讨论,我们对在使用到Hibernate的项目的单元测试中使用多个Hibernate配置文件有了比较清楚的认识。

持续集成中的测试的特征是自动化和持续性,不能手工干预其过程,在使用到Hibernate的项目如果要实现持续集成,就要为不同的测试案例提供不同的配置文件,而不是针对不同的测试案例进行手工调整,因此,在使用到Hibernate的项目中灵活的运用多配置文件,可以提高测试的效率,保证自动化和持续性。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号