运行 测试容器 *.dll 文件时第一次失败时停止 MStest
Stop MStest on first failure when running test container *.dll file
我正在从命令行执行测试文件,
mstest /testcontainer:test1.dll
这个 dll 文件包含多个测试,有什么方法可以在第一次测试失败时停止测试
注意 - 由于项目文件太大无法更改代码
也许this Whosebug post will help.
它描述了创建一个基础 class 你的单元测试 class 是从中派生的。当一定数量的测试失败时,它会找到当前进程并杀死它。
我正在从命令行执行测试文件,
mstest /testcontainer:test1.dll
这个 dll 文件包含多个测试,有什么方法可以在第一次测试失败时停止测试
注意 - 由于项目文件太大无法更改代码
也许this Whosebug post will help.
它描述了创建一个基础 class 你的单元测试 class 是从中派生的。当一定数量的测试失败时,它会找到当前进程并杀死它。