4

How can I ignore the comparison of some columns using ExpectedDataSet annotation?

  • I use dbunit API.
4

1 回答 1

10

在使用 spring-test-dbunit 的 spring 中,您可以编写:

@ExpectedDatabase(value="yourdataset.xml", assertionMode=DatabaseAssertionMode.NON_STRICT)

并省略“yourdataset.xml”上的列

参考:http ://springtestdbunit.github.io/spring-test-dbunit/

于 2014-05-20T11:02:02.723 回答