如何通过 UI 将参数传递给 NUnit 测试用例
是否有任何第三方 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
据我所知,您可以在每次测试之前使用一个简单的 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]
我正在使用 交互。输入框方法。
I was using Interaction.InputBox Method.
也许您可以使用 TestCaseSource 属性
可以传递数据在测试中甚至可以从文件或项目集合中进行。
Maybe you can use the TestCaseSource attribute
You can pass data in test even from file or a collection of items.