如何通过 UI 将参数传递给 NUnit 测试用例

发布于 2024-10-30 08:10:42 字数 78 浏览 2 评论 0原文

是否有任何第三方 UI 工具可以接受参数并将参数传递给 NUnit 测试用例? 我正在拼命地寻找它。 非常感谢您的评论和建议!

Is there any third-party UI tool to accept and pass parameters to NUnit Test Cases?
I am desperately looking for it.
Your comment and suggestion are much appreciated!!

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

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

发布评论

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

评论(3

苏佲洛 2024-11-06 08:10:42

据我所知,您可以在每次测试之前使用一个简单的 winforms 对话框提示 [Setup] 方法中的一些文本。但我不确定您是否能够确定此时正在运行哪个测试。您还需要注意重新线程,因为 nunit 2.4 不会使用支持 UI 的线程 (STAThreads) 运行测试。

更好的方法是在 [SetupFixture] 期间从输入文件加载测试配置数据

Not that I'm aware of, you could prompt with a simple winforms dialog for some text from the [Setup] method before each test. I'm not sure however you would be able to work out which test was being run at this point. You would also need to take care re-threading as nunit 2.4 will not run tests using UI capable threads (STAThreads).

Far better would be to load test configuration data from an input file during [SetupFixture]

人心善变 2024-11-06 08:10:42

也许您可以使用 TestCaseSource 属性

可以传递数据在测试中甚至可以从文件或项目集合中进行。

Maybe you can use the TestCaseSource attribute

You can pass data in test even from file or a collection of items.

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