正确的等同于 Grails Bootstrap.groovy 中的 DBUnit 吗?
我曾经使用 DBUnit 用我的单元测试所需的类/记录填充我的数据库,我注意到它们在 Grails 中使用 Boostrap.groovy 做了同样的事情,但我想知道这是否是这样做的正确方法在 Grails 中。
在 Grails 中设置 DBUnit 是不是更好?或者 Grails 有它自己的方法来做到这一点?
I used to use DBUnit to populate my database with classes/records expected by my Unit tests, and I noticed that they do sort of the same thing using Boostrap.groovy in Grails, but I am wondering if this is the kosher way of doing this in Grails.
Is it better just to setup DBUnit within Grails? Or does Grails have it's own way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不推荐使用 Bootstrap.groovy 加载测试数据。它可能会变得笨拙,特别是如果您想使用不同的数据集进行不同的测试。您可以使用许多 DBUnit Grails 插件来简化将 DBUnit 集成到 Grails 应用程序中的过程(尽管您也可以直接使用 JAR)。
还有一些插件提供了 Grails 特定的加载测试数据的方法。 Fixtures 插件似乎是最受欢迎的插件之一。
I wouldn't recommend Bootstrap.groovy for loading test data. It's likely to become unwieldy, particularly if you want to use different datasets for different tests. There are a number of DBUnit Grails plugins that you could use to simplify integrating DBUnit into a Grails app (though you can also just use the JAR directly).
There are also some plugins that provide Grails-specific ways of loading test data. The Fixtures plugin seems to be one of the most popular.
我总是将 Bootstrap.groovy 与环境块和测试 setUp()/tearDown() 方法结合使用。有时利用基础测试类。
I've always used a combination of Bootstrap.groovy using the environments block and the tests setUp()/tearDown() methods. Sometimes utilizing a base test class.