许多小的 dbunit 数据集还是一个大的数据集?
在我看来,每当调整架构时,将测试数据分布在多个小数据集中都会造成维护难题。有人发现创建一个更大的测试数据集有问题吗?我所说的“更大”仍然只是总共几百条记录。
Spreading test data across multiple small data sets seems to me to create a maintenance headache whenever the schema is tweaked. Anybody see a problem with create a single larger test data set? By "larger" I'm still only talk about a couple hundred records in total.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不会使用独特的大型数据集(如果不需要,您希望避免任何开销)并遵循 DbUnit 的 最佳实践建议:
来自 Unitils 人员的更多反馈:
过去,使用具有足够数据的小型数据集对我们来说效果很好。当然,如果您调整数据库,则需要进行一些维护,但这对于某些组织来说是可以管理的。
I would not use a unique large dataset (you want to avoid any overhead if you don't need it) and follow DbUnit's Best Practices recommendations:
Some more feedback from the Unitils folks:
Using small datasets with just enough data has worked decently for us in the past. Sure, there is some maintenance if you tweak the database but this is manageable with some organization.