Delphi 数据模块的单元测试
如果所有业务逻辑都存在于数据模块(TSQLDataSets 和 TDataSetProviders)中,您将如何重构代码以使应用程序更适合单元测试?
If all the business logic is present in a datamodule (TSQLDataSets and TDataSetProviders) how would you refactor the code to make the application more appropiate for unit testing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在最后一个问题之后,我写了一篇关于如何进行测试的博客文章。
After the last question about this, I wrote a blog post about how to do it.
一些基本提示:
希望这可以帮助。
Some basic tips:
Hope this helps.
对于 DUnit 测试的自动构建,您可以使用 OpenCTF,它能够在测试运行时自动查找所有组件并创建测试用例。 示例测试包括一些基本的数据访问层测试。
http://sourceforge.net/projects/openctf/
和
http://cc.embarcadero.com/Item/24136
替代文本 http://www.mikejustin.com/images/OpenCTF.gif
For automated construction of tests for DUnit, you could use OpenCTF, which is able to find all components and create test cases automatically at test run time. The example tests include some basic data access layer tests.
http://sourceforge.net/projects/openctf/
and
http://cc.embarcadero.com/Item/24136
alt text http://www.mikejustin.com/images/OpenCTF.gif