加载所有JUNIT测试和回滚所需的初始数据

时间:2013-10-24 20:15:36

标签: spring junit

我们如何加载JUNIT测试将使用的数据以及最后使用弹簧单元测试回滚?

1 个答案:

答案 0 :(得分:0)

您可以让您的测试类扩展如下:

http://docs.spring.io/spring/docs/2.5.x/api/org/springframework/test/context/junit4/AbstractTransactionalJUnit4SpringContextTests.html

有关详细信息,请参见第9.3.2.3节和第9.3.5.4节Spring文档:

http://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/testing.html#testing-tx

您可以将此功能与DBUnit结合使用,以使用已知数据填充数据库。