手动测试用例中的自定义参数

发布于 2024-12-27 17:35:31 字数 172 浏览 0 评论 0原文

我对 Microsoft 测试管理器中的手动测试用例有疑问。有没有办法定义“自定义”参数?

通常,您可以定义任何您想要的参数,例如@FirstName。该参数将自动添加到您的测试用例的参数列表中。

但我想知道是否有像“@Date”之类的东西..将其自身替换为 -DateTime.Now- 等效项?

I have a question regarding a manual Test Case in Microsoft Test Manager. Is there a way to define 'custom' parameters?

Normally, you can define whatever parameter you want, like @FirstName. This parameter will automatically be added to the list of parameters of your testcase.

But I was wondering if there is something like '@Date'.. which replaces itself in a -DateTime.Now- equivalent?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何止钟意 2025-01-03 17:35:31

不幸的是,不支持开箱即用。参数解析器不理解特殊参数。因此,@date 不会为您提供 DateTime.Now

但是,您可以将测试转换为编码的 UI 测试,并在传递 @date 时覆盖参数值以传递 DateTime.Now。

但是,我喜欢您的建议,并建议您在此处的用户语音网站上提出它 =>

Unfortunately that is not supported out of the box. The parameter parser does not understand special parameters. So, @date will not give you DateTime.Now

You can however, convert the test to a coded UI test and overwrite the parameter value to pass DateTime.Now when @date is passed.

However, i like your suggestion and would recommend that you raise it on the user voice site here => http://visualstudio.uservoice.com/forums/121579-visual-studio

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文