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

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

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

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

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


当前回答

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

你使用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

其他回答

检查测试是针对什么框架编写的(例如nunit, xunit, VS test等),并确保你已经安装了正确的测试适配器/运行器扩展。

对我来说,是NUnit 3测试适配器丢失了,我通过查看NUnit .framework依赖版本确认了所需的版本号(在解决方案资源管理器的依赖项树中选择.dll,并点击F4调出属性窗口)。

相同的问题。实际发生的情况是,测试运行试图在我加载的一个网站项目中发现测试(网站内部有一些针对angular的jasmine规格)。

这导致运行程序挂起试图加载一些NodeJS容器

从Microsoft.NodejsTools.TestAdapter.TestContainer更新容器

我从解决方案中删除了网站(显然,只是解决方案,而不是删除网站!)

我也有一些损坏的配置数据,我必须清除在.vs目录下的TestStore文件夹下。

完成这两个步骤后,事情又神奇地开始工作了

我有一个不同的解决方案来运行我的测试。我的全局包文件夹与。csproj中的不匹配 这是我的.csproj看起来的样子:

我不得不将我的版本更改为16.5.0,我发现它安装在我的全局包文件夹中。现在我的测试能够运行:

我可以从您的属性中看出您正在使用MSTest。我有一个类似的问题:我的测试显示在测试资源管理器中,但当我试图运行它们时(通过选择全部运行或单独选择它们),它们不会出现。

我的问题是,我从一个空的。net标准类库项目手动创建了单元测试项目。我已经安装了MSTest。TestFramework NuGet包,而不是MSTest。TestAdapter包。只要我安装了适配器包,它们就会按预期运行。

回想起来似乎是显而易见的,但是当您从模板创建单元测试项目时,您认为这些事情是理所当然的。

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.