在Visual Studio 2017中是否可以调试单个理论?这在2015年有效。现在,在2017年,启动了调试器并开始了理论中的所有测试案例。
我刚刚更新了2017年的最新版本(15.9.7)。不确定是否可以事先使用。
我可以选择一个单独的测试,但是当我单击debug时,它们都将被执行。
这在Visual Studio 2015(14.0.25431.01更新3)中有效。该问题在Visual Studio 2019预览版1.1中仍然存在。
缩短的代码示例:
namespace MyNameSpace
{
public class PayloadTest : BaseTest
{
[InlineData("AllergyDataChanged")]
[InlineData("ImplantableDeviceDataChanged")]
public void test1(string source, Type entityIdType = null)
{
TestSubscriber(source, entityIdType);
}
答案 0 :(得分:0)
转到:工具>选项>测试>常规>取消选中“从源文件实时发现测试”
这似乎是Visual Studio 2017+的问题。