ChatGPT解决这个技术问题 Extra ChatGPT

Visual Studio 2015 or 2017 does not discover unit tests

EDIT 2016-10-19:

The original question was about an issue specific to VS2015 CTP6 with the XUnit test runner. It's clear from the answers that there is a much broader issue with unit test discovery in Visual Studio which may occur in many different situations. I have cleaned up my question to reflect that.

I have also included a script in my own answer that I still use to this day to solve similar problems when they appear.

Many other answers have also proven helpful in better understanding the intricacies of the VS test runner. I appreciate that people are still sharing their solutions!

Original question 2015-04-10:

Since yesterday, my Visual Studio Test Explorer won't discover tests for any of my projects. It does not show the green loading bar after building, either.

When I go to the Visual Studio Test Explorer and click "Run All", or when I right-click any test method and select "Run Tests", I get the following in my output window:

Could not load file or assembly 'Microsoft.VisualStudio.Web.ProjectSystem, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.

I am running Visual Studio 2015 CTP 6 on Windows 10 Pro Technical Preview, build 10041. The .NET Framework version does not seem to matter - it happens on 4.0, 4.5.2 and 4.6.

I tried with the following testing frameworks and all of them give the same behavior:

Microsoft.VisualStudio.QualityTools.UnitTestFramework v14.0.22609.0

xunit v2.1.0-beta1-build2945 with xunit.runner.visualstudio v2.1.0-beta1-build1051

NUnit v2.6.4 with NUnitTestAdapter v2.0.0

I found an issue on GitHub (xunit) that appeared to be similar: Cannot get tests discovered #295, with this comment from the xunit team:

Be aware that Visual Studio 2015 CTP 5 has been reported to be broken by many people with unit testing in general (not just xUnit.net), so don't expect that to work. Also, please make sure you've cleaned out Visual Studio's runner cache. If it gets corrupted, Visual Studio will permanently misbehave until it's deleted. To clear the cache, shut down all instances of Visual Studio, then delete the folder %TEMP%\VisualStudioTestExplorerExtensions (honestly, it probably wouldn't hurt to delete everything in %TEMP% that can be deleted).

I tried their suggestion to delete the folder %TEMP%\VisualStudioTestExplorerExtensions. Unfortunately that did not fix the problem.

I noticed that ReSharper actually is able to discover some tests. It only works for the VS and NUnit tests, not for xunit.

There has to be some sort of temp or cache folder I need to clear, but I know Visual Studio has many of them and not all of them can be deleted without unwanted side-effects.

I'm so glad I stumbled upon this, it reminds me of why I'm using a 3rd party test runner (in my case ncrunch). I gave up on mstest a long time ago for similar reasons. Of course, that's no solution if you're stuck with mstest...
with VS 2017, incredibly enough, a cleaning of my temp and localappdata VS2017 related folders, a close + reload + clean solution and a Windows reboot didn't help. However, surprisingly, a simlpe "unload - reload" project on only one of my test projects did help the test discovery stopping hanging. I don't use 3rd party unit test package.
For some ppl this might be interesting or more relevant (I do not think I should add it as an answer) : No Source Available in Test Explorer - github.com/Microsoft/testfx/issues/274
This could be a fix for someone stackoverflow.com/a/58019304/1566372

I
Igor

To my surprise, clearing temp files located in the %TEMP% directory resolved the issue for me.

Note: This path is generally at C:\Users\(yourusername)\AppData\Local\Temp

As @Warren-P included, you can navigate to the temp folder by putting in %temp% in Start Menu, or launch "File Explorer" and enter %temp% in the address bar.


Or you just type in %TEMP% in the Start Run menu and it finds your temp folder for you without you guessing what the value of temp is.
@ZéCarlos Any application that stores important data in the %TEMP% directory deserves to stop working.
not an embarrassment for you, it's an utter failure from Microsoft that you have to take such ridiculous steps to keep a 1000+ USD IDE running.
Worked for me in VS2017 as well!
If you're concerned about clearing the whole temp directory, only clearing the Temp\VisualStudioTestExplorerExtensions sub-directory seems to fix the problem.
R
RJFalconer

It could be that your code is compiled with x64 therefore have to enable the Default Processor Architecture as X64.

Test > Test Settings > Default Processor Architecture > X64

This has bitten me a few times. Even after all these years I still can't think of a good reason why by default the test settings are not selected to automatically match the project's current build configuration. Just seems like pointless duplicate configuration to me.
Windows update and / or VS update changes the default architecture without telling you.... aaargh
And 4 years later, this is still helpful. Thanks
M
MichiBack

Check out, if NUnit Test Adapter 2/3 is installed in VisualStudio. (Tools>Extensions and Updates )

Make sure that correct processor architecture is chosen: (Test>Test Settings>Default Processor Architecture)


This is what finally worked for me. After trying everything else.
Makes you feel like a fool digging around in temp folders first when the extension is not even installed. Thanks for posting this.
Also check if you use the correct extension. There is a separate one for NUnit 2.x and NUnit 3.x.
When you're targetting .NET Standard, you actually need to install the NuGet package NUnit Test Adapter instead of a VSIX extension. github.com/nunit/docs/wiki/.NET-Core-and-.NET-Standard
Try to get NUnit3TestAdapter from nuget, instead of VSIX. That's the better approach
F
Fred Kleuver

EDIT 2016-10-19 (PowerShell script)

This issue still returns every now and then. I wrote a small PowerShell snippet to automate clearing the relevant cache/temp folder/files for me. I'm sharing it here for future readers:

@(
"$env:TEMP"
"$env:LOCALAPPDATA\Microsoft\UnitTest"
"$env:LOCALAPPDATA\Microsoft\VisualStudio\14.0\1033\SpecificFolderCache.xml"
"$env:LOCALAPPDATA\Microsoft\VisualStudio\14.0\1033\ProjectTemplateMRU.xml"
"$env:LOCALAPPDATA\Microsoft\VisualStudio\14.0\ComponentModelCache"
"$env:LOCALAPPDATA\Microsoft\VisualStudio\14.0\Designer\ShadowCache"
"$env:LOCALAPPDATA\Microsoft\VisualStudio\14.0\ImageLibrary\cache"
"$env:LOCALAPPDATA\Microsoft\VisualStudio Services\6.0\Cache"
"$env:LOCALAPPDATA\Microsoft\WebsiteCache"
"$env:LOCALAPPDATA\NuGet\Cache"
) |% { Remove-Item -Path $_ -Recurse -Force }

Make sure to close Visual Studio beforehand and it's probably a good idea to reboot afterwards.

Deleting the TEMP folder may not be necessary and may in some cases even be undesirable, so I would recommend trying without clearing the TEMP folder first. Just omit the "$env:TEMP".

Original answer 2015-04-12

The problem was "solved" after a thorough cleaning of Visual Studio-related temp/cache folders.

Since I did not have the time to go through everything one-by-one and then test in-between, I unfortunately don't know which one actually caused the problem.

These are the exact steps I've taken:

Closed Visual Studio Used CCleaner to clear system and browser temp files/folders Manually cleared/deleted the following files/folders: %USERPROFILE%\AppData\Local\assembly %USERPROFILE%\AppData\Local\Microsoft\UnitTest %USERPROFILE%\AppData\Local\Microsoft\VisualStudio\14.0\1033\SpecificFolderCache.xml %USERPROFILE%\AppData\Local\Microsoft\VisualStudio\14.0\1033\ProjectTemplateMRU.xml %USERPROFILE%\AppData\Local\Microsoft\VisualStudio\14.0\ComponentModelCache %USERPROFILE%\AppData\Local\Microsoft\VisualStudio\14.0\Designer\ShadowCache %USERPROFILE%\AppData\Local\Microsoft\VisualStudio\14.0\ImageLibrary\cache %USERPROFILE%\AppData\Local\Microsoft\VisualStudio Services\6.0\Cache %USERPROFILE%\AppData\Local\Microsoft\WebsiteCache %USERPROFILE%\AppData\Local\NuGet\Cache %USERPROFILE%\AppData\Local\Temp


Thanks, worked for me after clearing the Microsoft\VisualStudio\14.0\ and Microsoft\VisualStudio Services\6.0\Cache folders you describe.
Surely you mean \Microsoft\VisualStudio\14.0\ImageLibrary\ImageLibrary.cache?
I have removed everything from %TEMP% and it does not work, but when I readd 'VisualStudioTestExplorerExtensions' directory (empty) everywhing works perfectly :-) (There is anserw with that solution on the bottom at current day)
I want to confirm that this solution works for me with VS2015 Update 3 and Resharper 10. But you need to restart to see the miracle
I deleted only one file \AppData\Local\Microsoft\VisualStudio\14.0\1033\SpecificFolderCache.xml it hepls
A
AfshinS

One reason for this problem is that your test class is not public. MSTest only discovers tests from public classes.


While this is not 100% correct and I had an non-public class working fine, at some point its unit test stopped working. When I changed the unit test class to public, it started working again. Go figure!
This solved it for me. By default Visual Studio adds test classes without the public keyword, and it wouldn't see them until I made them public.
P
Pankti Shah

In Visual Studio 2015(Update 3) if you want to attach the tests in the test explorer then have to install the NUnit Test Adapter.Download the adapter from Tools->Extension And Updates->Online tab(you have to search for the adapter)->Download. By restarting the Visual Studio you can see the change for the test framework.


Following your instructions, I searched for "nunit" and found "NUnit 3 Test Adapter" which, after "Download" (install), resolved my issue. Searching internet for this issue finds other SO article at link
This is better than Nuget package manager in some scenarios as it does not change the config files
@GY_ but when you're targetting .NET Core or Standard, you actually need the NuGet package, check my answer down below: stackoverflow.com/a/47460221/1137334
You save my life ! Thanks, I tried so many solutions and it didn't works. Mine was google test adapter.
A
Avi Cherry

I don't have a complete answer to this, but I have determined some things by playing with a test project:

The xunit.runner.aspnet : 2.0.0-aspnet-beta4 that appears to be part of the official beta4 aspnet5 release does not work in Visual Studio. Instead, using "xunit": "2.1.0-*" and "xunit-runner.dnx": "2.1.0-*" packages DO work in Visual Studio. In order for VS to discover the tests, your project MUST have a SINGLE command named "test" that runs "xunit.runner.dnx". Adding additional commands may break it. If your Test Explorer window still ends up empty, REMOVE the "test" command from your project, then re-build the solution, then add the "test" command back to the project.json. Clearing all your caches as per @Fred-Kleuver 's suggestion may help, but I haven't done all the steps in isolation, so I'm not sure.

This is current as per VS 2015 CTP 6, using the beta4 releases, not the dailies.


Okay, I've confirmed (by having a co-worker try it) that the above fix does not require any clearing of the caches or temp files.
Above says "Instead, using "xunit": "2.1.0-" and "xunit-runner.dnx": "2.1.0-" packages DO work in Visual Studio.". This works, thanks!
Btw, as a followup, everything just seems to work fine now in VS 2015 as of the current releases. No fussing required to get new tests to show up or anything.
Finally, there is now a proper guide from MS on exactly which versions of xunit to use with which versions of DNX, here: xunit.github.io/docs/getting-started-dnx.html
M
Michael Freidgeim

I had an instance where some tests would not be picked up because I had made them async like the following:

public async void This_IsMy_UnitTest()

The problem was I forgot to make them return a Task and not void when I did the switch-over. One would think this would cause an error or failed test but nope. The unit tests in that class were fully ignored and acted like they didn't exist.

It wasn't after about 3 clean and builds + restarting VS.NET that I saw the test run and fail indicating I forgot to add the Task return type:

public async Task This_IsMy_UnitTest()

After the update, the unit tests were found and worked correctly. This might be an edge case, but having async tests for using await within but not having the signature correct can cause this same issue and it's not the 1st time I've done this.


Solved the issue for me!
D
Debendra Dash

Go to Nuget package manager and download Nunit Adapter as follow.

https://i.stack.imgur.com/jd8b7.jpg


Thank you, in my case I had NUnitTestAdapter instead of NUnit3TestAdapter. That solved my problem.
Adding the NUnit3TestAdapter nuget package to a solution or to a project wouldn't fix the problem for all other solutions in general, but only for those to which it has been added. In order to do it generally for all solutions/projs, add the NUnit 3 Test Adapter extension to your visual studio as explained at stackoverflow.com/a/45748818/1300390
V
Vinci

I had the same pronlem but the folder "%TEMP%\VisualStudioTestExplorerExtensions" did not exist on my machine so as i read the posts i had the idea to create it and it works. The test explorer is now able to show all my tests. Thanks.


l
lukyer

Just restart Visual Studio and in Test Explorer do "Run All" ... All my tests are discovered then.


I've noticed also just closing Test Explorer and reopening it and choosing Run All works too. I'm not sure yet if it always works but it worked this time.
s
sammy34

In my case (Visual Studio Enterprise 2015 14.0.25425.01 Update 3, Resharper 2016.2) I just needed to do a clean solution from the Build menu. Rebuilding the solution then cause the test explorer to "wake up" and find all the tests again.


U
Umar T.

The solution in my case was just to install the NUnit 3 Test Adapter extension to my Visual Studio 2015.

https://i.stack.imgur.com/m46iR.jpg


How does your answer add value to the question? Have you read them? There are already two answers that recommend the exact same solution: stackoverflow.com/a/41364951/6305294 , stackoverflow.com/a/35043380/6305294
Well, I read the first one (i.e. stackoverflow.com/a/41364951/6305294) but that is different to my answer as that is suggesting to add NUnit Adapter nuget package to a solution or to a project, which wouldn't fix the problem for all other solutions in general. With regards to the second one, I've to admit I missed to see it. Perhaps adding a screenshot helps the eye catch it when there are two many answers present to a question
A
AndyZez

In my case, the problem was "between the chair and keyboard". I had switched to a configuration in the Configuration Manager which did not include my unit test projects on build. Switching back to a configuration (e.g. Debug) which includes all projects fixed the issue.


K
Kenneth K.

In my case, MSTest under VS 2015 was ignoring tests with test (i.e. method) names that were longer than 174 characters. Shortening the name allowed the test to be visible. This was determined via guess-and-check by manipulating the test name.


S
Sam

This probably won't help most people, but someone inexperienced at unit testing had written a test method that returned bool instead of void:

[TestMethod]
public bool TestSomething()

Changing the return type to void fixed the problem.


Still interesting to know that returning a type prevents test discovery, I didn't know that.
p
pvasek

Ensure you have xunit.runner.visualstudio package in your test project packages.config and also that was correctly restored.

I know this was not the case of the original question however it could save time for someone like me.


S
ScottishTapWater

I would just like to add that I found an entirely different solution to the ones above.

I had declared my test class as below:

[TestClass]
class ClassificationTests
{
   //unit tests
}

As soon as I added the public modifier to the class, it worked as expected!


p
pehur

This topic is somewhat outdated, but my solution to the missing Test status in VS2015:

The task-status only shows up on the Debug buildconfiguration. Ofcourse this also makes it impossible to debug your test through the test-explorer.


M
Maate

Somehow my project was set to compile as a Static Library (.lib). After changing this to a Dynamic Library (.dll), tests where discovered correctly by Visual Studio 2012.

My Unit Test Project ->
Properties ->
Configuration Properties ->
General ->
Configuration Type

This is my problem as well. However, I want to use a lib and want to know how to make it work.
C
Community

If you're targetting .NET Standard or .NET Core, you need to use the NuGet package for NUnit Test Adapter and not the extension.

It is recommended to install the adapter from NuGet if you are testing .NET Core or .NET Standard projects. The VSIX adapter does not, and will not, support .NET Core because VSIX packages cannot target multiple platforms.

Source: NUnit GitHub Wiki

.

Also check the FAQ there:

My tests aren't showing up in Visual Studio 2017? Are you using the NuGet package? Are you using version 3.8.0 or newer of the NuGet package? Do your tests target .NET Core or the full .NET Framework? (see above) Have you added a Package Reference to Microsoft.NET.Test.Sdk? Have you restarted Visual Studio? It is still a bit tempermental.

Source: NUnit GitHub Wiki


O
Ohad Schneider

This happened to me because my test project contained an app.config. It was automatically added by NuGet packages for assembly redirection, but my tests seemed to run fine without it.

See: https://developercommunity.visualstudio.com/comments/42858/view.html.


E
Eric

I had the same problem. I just cleaned and rebuilt the project and I was able to see the tests that were missing.


T
Thomas Parikka

Popping in to share my solution. I was on Windows 10, Visual Studio 2015, NUnit 3.5, NUnit Test Adapter 3.6 (via NuGet, not the VISX extension) and none of my tests were being discovered. My problem was that in the Tests project of my solution, somehow a shortcut to my "Documents" folder had been created within the project folder. I'm guessing the test adapter was seeing the shortcut and getting hung up trying to figure out what to do with it, resulting in the failure to display unit tests.


d
der_chirurg

Deleting the file \AppData\Local\Microsoft\VisualStudio\14.0\1033\SpecificFold‌erCache.xml solved the issue for me.


R
Robbie Dee

I was also bitten by this wonderful little feature and nothing described here worked for me. It wasn't until I double-checked the build output and noticed that the pertinent projects weren't being built. A visit to configuration manager confirmed my suspicions.

Visual Studio 2015 had happily allowed me to add new projects but decided that it wasn't worth building them. Once I added the projects to the build it started playing nicely.


P
Pouyan Sepahvand

I resolved it by changing X64 to : Right click on project -> Properties -> Build -> Platform target -> Any CPU


m
mggSoft

It was so easy for me to fix the issue as:

Select your Unit Test Project

Click on 'Show All Files' button in the Solution Explorer and new temporary files appeared in the file tree of the Solution Explorer within 'obj\x86\Debug'.

Delete these temporary files and rebuild project.

Retried to run tests and worked!.


T
TommyD

We had the same problem. We have a big VS 2015 solution with multiple C# projects in it and even more test projects.

Resharper's test discovery worked just fine, but VS Test Explorer failed miserably.

Turns out that the projects didn't have the same version of MsTest TestFramework and TestAdapter, and that sometimes they used NuGets and other times good old references, and that is not supported apparently (so much for such an expensive IDE).

Removing all Microsoft.VisualStudio.Test* references and then adding / updating the two MSTest NuGets fixed the problem.


J
JerryM

I solved this problem by realizing that the Target Framework for my test project was different than the project under test. Yes, I caused this problem by changing the target framework from the default (Project>Properties>Application), but failed to this this for the test project, which was created several weeks later. The mismatch did not cause a compiler error, but it did result in a warning in the Error List window. Once I selected the option to display warnings, the solution was obvious.