(重新)命名数据库单元测试中的测试条件
将测试条件添加到 Visual Studio 2010 数据库单元测试(对于 SQL Server 2008)时,这些条件称为 rowCountCondition1、rowCountCondition2、scalarValueCondition1、scalarValueCondition2 等。
你们会重命名这些默认条件名称还是将它们保留原样......?
When adding testconditions to a Visual Studio 2010 database unit test (for SQL Server 2008), these conditions are called e.g. rowCountCondition1, rowCountCondition2, scalarValueCondition1, scalarValueCondition2 and so on.
Do you guys rename these default condition names or do you just leave them as is...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重命名它们,以便当它们失败并且您打开测试结果文件时,可以更立即明显地看出出了什么问题。
例如,哪个错误消息更有用:
或者:
另外,我建议为测试名称/测试条件名称建立命名约定。
Rename them so that when they fail and you open the test results file it is more immediately obvious what went wrong.
For example, which error message is more useful:
Or:
Additionally I would recommend establishing a naming convention for test names / test condition names.