查找不在列表中的所有测试
我将 Web 应用程序的所有测试(使用 Visual Studio 测试框架 - Microsoft.Quality DLL 编写)分为多个(当前为两个)有序测试。 有没有一种简单的方法可以找到不在任何列表中的所有测试?
(我需要使用有序测试的原因是因为初始测试测试我的应用程序的安装/设置/配置是否有效,如果没有这个,后续测试就会失败。)
I have all the tests for my web application (written with the Visual Studio test framework -- Microsoft.Quality DLLs) divided into several (currently two) ordered tests. Is there an easy way to find all the tests that are not in any list?
(The reason I need to use ordered tests is because the initial tests test that installation/setup/configuration of my application worked, and subsequent tests would fail without that.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个简单的方法可以做到这一点。最好的办法是切换到一个不需要每个测试都在列表中的框架——我推荐 MbUnit。它有一个很棒的 DependsOn 属性,可以轻松配置测试之间的依赖关系。
There's on easy way to do this. The best thing to do is switch to a framework that doesn't require every test to be on a list -- I recommend MbUnit. It has a great
DependsOn
attribute to easily configure dependencies between tests.