我目前正在开发一个有32个单元测试的解决方案。我一直在使用resharper测试运行器-它工作得很好。所有测试都在运行,所有测试都显示正确的测试结果。

但是,在使用Visual Studio测试资源管理器时,测试未运行。

测试资源管理器正在显示所有单元测试,但一旦单击“全部运行”,所有测试都将变成灰色,并且不显示测试运行的结果:

所有测试类都是公共的 所有测试类都声明了[TestClass]属性 所有测试方法都使用[TestMethod]属性 生产力代码和测试项目都是针对。net 3.5的。 我已经尝试清洁构建我的解决方案,和/或删除所有obj, bin,调试和发布文件夹

我很感激任何能解释这种行为的提示。


当前回答

这个问题已经有很多答案了,但我有一个不同的场景和解决方案。

我们将正在测试的类型的功能从一个类移动到一个新类,这样就创建了一个新的测试类,旧的测试类最终为空。

原:

旧的测试类 测试初始化方法 测试方法

断:

旧的测试类(保留初始化项,类保留为未来的占位符) 测试初始化方法(保留,单独) 没有测试方法(原始的测试方法出现在测试运行器中,但不存在于代码中,因此永远不会执行) 新的测试类 测试初始化方法 测试方法

修复:

旧的测试类(已删除) 新的测试类 测试初始化方法 测试方法

清理项目,关闭Visual Studio,删除TestResults文件夹,然后重新启动VS,然后重新构建项目。(这本身可能解决您的问题,但对我来说还不够,直到删除了旧的测试类。)

其他回答

对我来说(不是一个解决方案),它是取消选择菜单[测试]->[测试设置]->[{当前文件}]中的.testsettings文件来取消当前使用的文件。

对我来说,一开始就是这样。

<TestSettings name="Local (with code coverage)" id="e81d13d9-42d0-41b9-8f31-f719648d8d2d" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
  <Deployment>
    <DeploymentItem filename="ConfigurationImportExportTest\Configurations\" />
    <DeploymentItem filename="output\Debug\" />
  </Deployment>
  <Execution>

显然deploymenttem有干扰。

因为这是在Output选项卡中:

Warning: Test Run deployment issue: The assembly or module 'Microsoft.SqlServer.Management.SqlParser' directly or indirectly referenced by deployment item 'output\Debug\' specified by the test settings was not found.
.... more of the same

它没有告诉我很多东西。 这似乎与所有项目都将其编译产品放在一个公共的\output\Debug文件夹中有关

然而,这似乎并没有阻碍它。 它发出了另一个警告,提到了

A testsettings or runsettings file with `ForcedLegacyMode = TRUE or VSMDI files are not supported by MSTest-V2.

这似乎阻止了它。

对我来说,问题是我的ClassInit()方法没有正确的签名。

MSTest类初始化和清理属性

特别要注意ClassInit()方法上的[ClassInitialize]属性。

工作原理:

[ClassInitialize]
public static void ClassInit(TestContext context)
{

}

没有工作:

[ClassInitialize]
public void ClassInit(TestContext context)
{

}

or

[ClassInitialize]
public static void ClassInit()
{

}

or

[ClassInitialize]
public void ClassInit()
{

}

我也有同样的症状

请确保您通过工具-扩展和更新安装了正确的Visual Studio扩展。在我的案例中,我必须从Online选项中安装XUnit和Specflow。

然后清洗溶液,重新构建。

如果仍然没有帮助,清除您的temp目录(在开始菜单搜索中搜索%temp%并删除temp中的所有内容)

然后最后尝试卸载Resharper,这最终解决了我的问题。

这在VS2019中很管用。

移动测试到一个新的NUnit 3测试项目。所有测试都按原样运行。

I found that in the project it was not referencing the Microsoft.VisualStudio.QualityTools.UnitTestFramework assembly. Instead, it was referencing Microsoft.VisualStudio.TestPlatform.TestFramework and Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions. When I removed those two references and added the reference to the Microsoft.VisualStudio.QualityTools.UnitTestFramework assembly the tests that were previously marked with the blue exclamation point suddenly became active and started working.