.NET WebTest 自定义验证规则 - 如何进行单元测试?
我正在为 .NET Webtest 创建自定义 ValidationRules。
是否有一些简单的方法来为这些验证规则创建单元测试?
I'm creating custom ValidationRules for a .NET webtest.
Is there some easy way to create unit tests for these validation rules?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个数据库+表来保存 webtest 值,创建一个从表中加载的 webtest 并使用表中的值填充表单。您还可以添加“预期结果”列。然后,Webtest 可以自动迭代表中的行,并根据“预期结果”报告成功。编码的网络测试将更容易创建您的自定义验证规则。
Create a database+table for holding webtest values, create a webtest that loads from your table and populates the form with the values from your table. You can also add an "expected result" column. The webtest can then iterate automatically through rows in the table and report success based on the "expected result". A coded webtest is going to be easier to create your custom validation rule with.