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

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

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

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

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


当前回答

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.

其他回答

我也有同样的问题。先问几个问题;

你使用VS 2022吗? 你安装了。net7(预览版)了吗? 你用NUnit吗?

(至少这是我安装的)

如果是这样,那我可能已经找到解决办法了。我在GitHub上看到了这个答案:https://github.com/nunit/nunit3-vs-adapter/issues/987。我刚刚将我的NUnit3TestAdapter NuGet包从4.2.1版本更新到4.3.0-alpha-net7.4,现在我可以再次运行所有的测试了。

NuGet链接:https://www.nuget.org/packages/NUnit3TestAdapter/4.3.0-alpha-net7.4

我在输出选项卡>“测试”下拉菜单中发现了这个错误消息,这帮助我确定了问题:

No test is available in C:\xx\Tests\xx\bin\Debug\xx.dll. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
NUnit Adapter 4.2.0.0: Test discovery starting
Exception System.TypeInitializationException, Exception thrown discovering tests in C:\xx\UnitTests\bin\Debug\UnitTests.dll
The type initializer for 'NUnit.Engine.Services.RuntimeFrameworkService' threw an exception.
   at NUnit.Engine.Services.RuntimeFrameworkService.ApplyImageData(TestPackage package)
   at NUnit.Engine.Services.RuntimeFrameworkService.SelectRuntimeFramework(TestPackage package)
   at NUnit.Engine.Runners.MasterTestRunner.GetEngineRunner()
   at NUnit.Engine.Runners.MasterTestRunner.Explore(TestFilter filter)
   at NUnit.VisualStudio.TestAdapter.NUnitEngine.NUnitEngineAdapter.Explore(TestFilter filter) in D:\repos\NUnit\nunit3-vs-adapter\src\NUnitTestAdapter\NUnitEngine\NUnitEngineAdapter.cs:line 88
   at NUnit.VisualStudio.TestAdapter.NUnit3TestDiscoverer.DiscoverTests(IEnumerable`1 sources, IDiscoveryContext discoveryContext, IMessageLogger messageLogger, ITestCaseDiscoverySink discoverySink) in D:\repos\NUnit\nunit3-vs-adapter\src\NUnitTestAdapter\NUnit3TestDiscoverer.cs:line 82
InnerException: System.ArgumentException: Unknown framework version 7.0

我不得不改变我的异步测试方法,以返回任务而不是void。

然后,测试在“测试资源管理器”中处于活动状态并可运行。

我也有同样的症状

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

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

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

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

在我的例子中,这是因为我的解决方案中的一个测试项目具有MSTest。TestFramework和MSTest。TestAdapter安装了包,但其他的没有。在解决方案中的一个项目安装了这些包之前,显然不需要运行测试。

这个问题通过在测试项目上安装这些包而得到解决。

我使用。net 4.7的VS2019。我安装了NUnit扩展v3,并将测试设置改为使用X64。我的单元测试项目是任何CPU(如果我把它改成x64就可以工作)。现在我可以调试我的代码了。