204

UPDATE: Adding a 2019; the discovery/runner integration mechanism is same as per 2017 & 2015, so the key things that can go wrong are the same.


I've read Why is the xUnit runner not finding my tests, which covers reasons xUnit would never be able to find your tests but my problem is different - I'm confident there's nothing subtle going on with my tests; (they have worked in other environments, this seems to be just my machine) - the Visual Studio Test Runner in Visual Studio 2015 [Community Edition] is simply not showing any of my tests. I'm not doing anything remotely exciting; the tests target xUnit.net v2 on the Desktop.

I've looked in the Output window and am not seeing anything in at all under Test in the Show output from tabs.

Ruben Bartelink
  • 59,778
  • 26
  • 187
  • 249

41 Answers41

239
  1. Eliminate discovery exceptions from your inquiries; go to the output Window (Ctrl-Alt-O), then switch the show output from dropdown (Shift-Alt-S) to Tests and make sure there are no discovery exceptions

  2. Test|Test settings|Default processor architecture can help if your tests are x86/x64 specific and discovery is triggering bittedness-related exceptions, i.e. not AnyCpu

  3. As suggested in this answer(upvote it if the technique helps) running the desktop console runner (instructions) can be a good cross check to eliminate other possibilities, e.g. mangled config files:-

> packages\xunit.runner.console.2.2.0\tools\xunit.console <tests.dll>

NOTE The xunit.runner.console package is deprecated - when you get stuff working in VS, you'll be able to have dotnet test run them in CI contexts too


Go read the documentation - it's comprehensive, up to date, includes troubleshooting info and takes PRs:-

Important note: If you've previously installed the xUnit.net Visual Studio Runner VSIX (Extension), you must uninstall it first. The Visual Studio runner is only distributed via NuGet now. To remove it, to go Tools > Extensions and Updates. Scroll to the bottom of the list, and if xUnit.net is installed, uninstall it. This will force you to restart Visual Studio.

If you're having problems discovering or running tests, you may be a victim of a corrupted runner cache inside Visual Studio. To clear this cache, shut down all instances of Visual Studio, then delete the folder %TEMP%\VisualStudioTestExplorerExtensions. Also make sure your project is only linked against a single version of the Visual Studio runner NuGet package (xunit.runner.visualstudio).

The following steps worked for me:

  1. (Only if you suspect there is a serious mess on your machine - in general the more common case is that the visual studio integration is simply not installed yet)

Do the DEL %TEMP%\VisualStudioTestExplorerExtensions as advised :-

PS> del $env:TEMP\VisualStudioTestExplorerExtensions
  1. Install the NuGet Package xunit.runner.visualstudio in all test projects

    • Paket:

        .paket\paket add nuget xunit.runner.visualstudio -i
      

      You need to end up with the following in your paket.dependencies:

      nuget xunit.runner.visualstudio version_in_path: true
      

      Note the version_in_path: true bit is important

    • Nuget: Go to Package Manager Console (Alt-T,N,O) and

      Install-Package xunit.runner.visualstudio
      

    Rebuild to make sure xunit.runner ends up in the output dir

  2. Close Test Explorer <- this was the missing bit for me

  3. Re-open Test Explorer (Alt-S,W,T)

  4. Run All tests (Ctrl R, A)

Ian Kemp
  • 28,293
  • 19
  • 112
  • 138
Ruben Bartelink
  • 59,778
  • 26
  • 187
  • 249
  • 12
    "Close Test Explorer <- this was the missing bit for me" This is the most important step that I missed as well and spent 5 hours to figure out. Thank you, I should have paid attention to the steps :) – Esen Aug 13 '16 at 18:26
  • 1
    the xunit VS runner was working for my sln. However, it had stopped showing up one day. Found out that I did not installed the VS running, and it was working probably because of the cache, left by the other sln which has the runner installed. After installing the runner, things work fine again. So don't forget to install the runner for every sln. – ZZZ May 17 '17 at 04:30
  • 1
    This is unbelievable. Deleting the folder that had three other empty folders in it fixed the issue. – t3chb0t Jun 26 '17 at 10:07
  • @t3chb0t It probably had 50 hidden files and a wierd permission ;) (maybe it was created by a different user identity?) – Ruben Bartelink Jun 26 '17 at 15:13
  • Your first sentence was the key for me. The Test window showed I had the wrong version of NUnit. – Tony D Jul 05 '17 at 19:14
  • I missed the public keyword on my test class -_- – MartinJH Jul 21 '17 at 12:27
  • 1
    @martinJH I have a self answered one for that (Linked in OP) :- https://stackoverflow.com/questions/16214684/why-is-the-xunit-runner-not-finding-my-tests/ ;) Not revealing how I discovered that though – Ruben Bartelink Jul 21 '17 at 14:30
  • C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv /resetuserdata could also fix your problem in my experience – sebas2day Jul 25 '17 at 17:06
  • @seb2day not seeing any info re that suggesting a direct connection so will not edit in for now (it seems TFS Cache related https://blogs.msdn.microsoft.com/ejarvi/2005/07/14/vsts-tip-devenv-resetuserdata/ and is not documented in 2015 or 2017 anymore, although there is a *`resetsettings`* https://learn.microsoft.com/en-gb/visualstudio/ide/reference/resetsettings-devenv-exe ) – Ruben Bartelink Jul 26 '17 at 06:11
  • Closing and reopening Test Explorer helped me, but it didn't work the first time. I can usually get test explorer to discover tests but I haven't figured out what consistently works. – Rich Sep 05 '17 at 16:28
  • Removing %TEMP%\VisualStudioTestExplorerExtensions did it for me – Vanice Nov 10 '17 at 09:48
  • 3
    Really weird stuff, but deleting `%TEMP%\VisualStudioTestExplorerExtensions` and restarting VS finally worked! – Hinrich Jul 19 '18 at 15:20
  • Thanks mate! My issues solved by Point 3. I can't believe that the testing framework won't change accordingly. – Danny Su Oct 29 '18 at 05:43
  • For some reason I had to use the keyboard shortcut to run all tests (`Ctrl`+`R`,`A`) before the Test Explorer would recognize my tests. For some reason clicking the Run All button with the mouse wouldn't find any tests. – deadlydog Sep 12 '19 at 18:59
  • Note that on my machine with VS 2019 pro there was no `%TEMP%\VisualStudioTestExplorerExtensions` folder. Instead I had to delete `.vs\` in the solution root – Sebastian Dec 16 '19 at 22:35
  • Unfortunately I don't have the rep to post an answer. However, I just want to say that I encounter this issue intermittently. I did a Close Solution, then I reopened the solution, and my tests were discovered. So that's one more thing for people to try if this is just happening intermittently. – John Mar 22 '22 at 19:52
39

None of the above solutions worked for me (dotnetcore 1.1, VS2017). Here's what fixed it:

  1. Add NuGet Package Microsoft.TestPlatform.TestHost
  2. Add NuGet Package Microsoft.NET.Test.Sdk

Those are in addition to these packages I installed prior:

  • xunit (2.3.0-beta1-build3642)
  • xunit.runner.visualstudio (2.3.0-beta1-build1309)
ΩmegaMan
  • 29,542
  • 12
  • 100
  • 122
Arman Peiravi
  • 1,079
  • 9
  • 12
36

I had to change the Test Settings after changing the test projects CPU to x64. Then the tests where detected again.

Architecture

Max
  • 1,068
  • 1
  • 10
  • 15
27

Install xunit.runner.visualstudio package for the test project

Chris Aelbrecht
  • 2,051
  • 21
  • 25
25

Make sure that your test class is public.

shaeed
  • 443
  • 4
  • 5
  • thats explicitly addressed in the first proviso (I link t another question that covers that case); this Q+A is only about troubleshooting how how normally OK tests that work in other places dont work for someone righjt now in a given environment. For me this answer just confuses matters as it dilutes that distinctino. – Ruben Bartelink Oct 21 '19 at 11:03
15

Follow this steps :

  1. Update your MsTest.TestAdapter and MsTest.TestFramework dll's from nugget package manager.
  2. Clean your solution
  3. Build your solution.
Marian Nasry
  • 821
  • 9
  • 22
Venkat Ramanan
  • 217
  • 2
  • 8
  • 1
    Can you open a clone of this question and self answer please as I have done? This one is about xUnit v2 and later. Even xUnit v1 answers have no place here. You can link to it with a see also at the top of the question, or I can link to it in the question – Ruben Bartelink Oct 17 '17 at 01:42
  • This solution works.. Otherwise everytime i had to remove `%TEMP%\VisualStudioTestExplorerExtensions` and still sometimes i had to run the tests from console. – Venkata Dorisala Oct 19 '17 at 11:25
  • I am using NUnit and I solved this issue by updating NUnit3TestAdapter to the latest version via NuGet. – dpberry178 Feb 07 '18 at 00:09
  • Thanks for this - in my instance just had to Update-Package -reinstall MSTest.TestAdapter and the tests got picked up. – Rob Mar 05 '18 at 05:15
11

I've been struggling with this all afternoon whilst working with an ASP Core project and xUnit 2.2.0. The solution for me was adding a reference to Microsoft.DotNet.InternalAbstractions

I found this out when trying to run the test project manually with dotnet test which failed but reported that InternalAbstractions was missing. I did not see this error in the test output window when the auto discovery failed. The only info I saw in the discovery window was a return code, which didn't mean anything to me at the time, but in hindsight was probably indicating an error.

Tom Makin
  • 3,203
  • 23
  • 23
  • "but reported a useful error" ... which was ? Also can you verify it was definitely not listed in the discovery errors window as stated in the OP - i.e. can you confidently state "I've looked in the Output window and am not seeing anything in at all under Test in the Show output from tabs." ? – Ruben Bartelink Nov 02 '16 at 03:10
  • 1
    See updated answer, I will post the return code info later on in case it is relevant. – Tom Makin Nov 02 '16 at 11:14
11

It's happened to me a couple of times - when I Clean the project and Build it again it tends to be fine.

Liam
  • 5,033
  • 2
  • 30
  • 39
  • any telltale messages when you look in the output window with Tests selected in the dropdown? – Ruben Bartelink Mar 21 '17 at 16:45
  • 3
    None at all, it just says No tests found – Liam Mar 22 '17 at 10:10
  • In my case, Test Explorer was hanging on a previously failed test. If I browsed to it and tried to right click -> Run or anything then the whole VS would hang. Just doing a Clean and Rebuild cleared the test status and fixed the issue for me. – Piedone Dec 27 '19 at 20:45
  • May I add that simply building (i.e. F6) won't help, you need to right-click on the solution in VS Solution Explorer and click Rebuild Solution. – Piedone Dec 27 '19 at 23:18
10

I had the same issue with Visual Studio 2019. Just Installed the following NuGet packages and the issue was solved.

1). xUnit

2). xunit.runner.visualstudio

3). Microsoft.TestPlatform.TestHost

4). Microsoft.NET.Test.Sdk

Chamila Maddumage
  • 3,304
  • 2
  • 32
  • 43
8

After spending 2 days... none of the above worked for me. The only "solution" was: Go to project properties -> Build Tab. Then click Advanced button on the right bottom corner of the pane. Change "Debug Info:" to "full" and click OK.

Here are the screen shots: enter image description here

enter image description hereenter image description here

curiousBoy
  • 6,334
  • 5
  • 48
  • 56
  • 1
    sounds painful. Thanks for sharing and hope it helps someone some day. However I have to say: I can't think of any reason for the debug info level to affect the discovery process so I can only say "I don't think that was what actually shot the bear" - let's hope I'm wrong though ;) – Ruben Bartelink Jun 19 '17 at 18:38
  • @RubenBartelink completely agree with you, that is why I mentioned "solution" in a quote :) but weird enough, it worked right away once I did this. – curiousBoy Aug 18 '17 at 04:04
  • 1
    Thank you very much. This was also the fix for me :) – Babulaas Jan 15 '18 at 11:10
7

The reason in my case was the target build was not the same between project debugger and test runner. To unify those elements:

  1. Test>Test Settings>Default Processor Architecture. then select either X64 or X86.
  2. Project>(your project)Properties>Build(tab)>platform target.

After they are identical, rebuild your solution then test methods will appear for you.

Ruben Bartelink
  • 59,778
  • 26
  • 187
  • 249
Jawad Sabir
  • 167
  • 2
  • 12
6

I am using xUnit 2.2.0.

My issue was my solution was not able to find certain dlls and app.config was trying to resolve them. The error was not showing up in the test output window in Visual Studio.

I was able to identify the error when I installed xunit.runner.console and tried to run the tests through command line.

How to run xunit tests in CLI.

SohamC
  • 2,367
  • 6
  • 22
  • 34
5

I can provide a solution for an edge case I ran into a few days ago. It's not gonna be the solution that fits all of the scenarios described above, however, for the edge case I had it fixed it.

I had the same issue with most recent VS 2017 (version 15.5.7) and XUnit 2.3.1. The xunit.runner.visualstudio package was installed, however, the tests didn't show up in VisualStudio's built-in test explorer.

I was working on a legacy project that was targeting .NET framework 4.5. However, beginning with version 2.2. XUnit does not support .NET frameworks lower thant 4.5.2 (see Release Notes - XUnit 2.2: February 19, 2017

Changing the test project's target framework to a version >= 4.5.2 worked for me. You don't have to change the project's version that you're testing, it's just about the test project itself.

baumgarb
  • 1,955
  • 3
  • 19
  • 30
3

This can also be due to the build check box not being ticked for the current platform project in the build configuration. Click Build | Configuration manager, then make sure the test projects have a tick in the build column for the platform that you're using (for example 'x86').

This was definitely the solution that worked for me.

cd747
  • 31
  • 1
  • I would upvote this if it was on https://stackoverflow.com/questions/16214684/why-is-the-xunit-runner-not-finding-my-tests/ as this is not xunit2 specific and a good checklist element – Ruben Bartelink Jul 14 '17 at 10:56
3

Do make sure that you haven't written your unit tests in a .NET Standard 2.0 Class Library. The visualstudio runner does not support running tests in netstandard2.0 class libraries at the time of this writing.

Check here for the Test Runner Compatibility matrix:

https://xunit.net

vullnetyy
  • 1,488
  • 13
  • 15
3

Ran into a similar problem with VS not discovering test methods. In my case I had the static keyword with the method, which I removed and it worked.

[TestMethod]

Before: public static void Test1()

After: public void Test1()
live-love
  • 48,840
  • 22
  • 240
  • 204
  • 2
    I'd really prefer if this was not here as this is about otherwise correct tests that can't be found in a particular instance of VS. I have a self-answered one re why an xunit test can't be discovered: https://stackoverflow.com/questions/16214684/why-is-the-xunit-runner-not-finding-my-tests. May I suggest you create a why cant my MSTest test be picked up (by VS if you want). (As you prob know, this particular concern does not even apply to xUnit which is another reason why, helpful as it is, your answer does not belong here) – Ruben Bartelink Oct 02 '17 at 07:46
  • MSTest did not find my tests because the class access modifier was internal. – Abdul Saboor Feb 13 '20 at 10:36
2

There is one other reason that can cause Test Explorer not showing any tests, and it has to do with the new portable .pdb file format introduced with Visual Studio 2017 / for .NET Core which can break some VS tooling. (Background: See the bug report "Mono.Cecil causes OutOfMemoryException with new .csproj PDBs".)

Are your tests not found because of the new portable .pdb (debug symbols) format?

  • Open the Output window.
  • Change drop-down selection for Show output from to Tests.
  • If you see output like to the following (possibly repeated once for each of your tests), then you've got the problem described in this answer:

    Exception System.OutOfMemoryException, Exception converting <SignatureOfYourTestMethod>
    Array dimensions exceeded supported range.
    

If yes, do this to resolve the problem:

  • Open your test project's Properties (select the test project in Solution Explorer and press Alt+Enter).
  • Switch to the Build tab.
  • Click on the Advanced... button (located at the very end of that tab page).
  • In the drop-down labelled Debugging information, choose none, pdb-only, or full, but NOT portable. It is this last setting that causes the tests to not be found.
  • Click OK and clean & rebuild your project. If you want to be extra sure, go to your test project's output directory and clean all .pdb files before rebuilding. Now your tests should be back.
stakx - no longer contributing
  • 83,039
  • 20
  • 168
  • 268
2

In my case, I had 2 different test projects in the solution. Project 1 tests could be found, but Project 2 tests could not. I found that first Unloading the test Project 1, then closing VS > clearing my temp files > re-open solution > rebuild, allowed VS to discover my Project 2 tests.

I'm assuming something must be conflicting between the two test projects and this was the quickest way to get me up and running in a few minutes. The kinks can be worked out later :).

Zach J.
  • 204
  • 2
  • 7
2

I tried most of the suggestions above and nothing worked. In my case, I'm on a team and tests were appearing for other devs for the same solution. So, I attempted just deleting my .vs folder, but no luck there either.

I ended up deleting my local folder entirely and re-cloning the repo. That solved it for me.

Paul G
  • 2,722
  • 4
  • 37
  • 54
2

I was suffering from this problem for long times.

  • I had about 100 projects different version was deployed in different server.

  • Updating xunit from 2.2.0 to 2.3.1 was not a solution because build was failing in 2.3.1.

Then I just updated xunit.runner.visualstudio to 2.3.1 and everything started to work fine. I have used this command in my package manager console to updated my xunit.runner.visualstudio package

Get-Project ComapanyName.ProjectName.*.Tests | Install-Package xunit.runner.visualstudio -Version 2.3.1
Nafeez Abrar
  • 1,045
  • 10
  • 27
2
  1. Close all Visual Studio instances
  2. Go to %TEMP%\VisualStudioTestExplorerExtensions\
  3. Delete specrun related folders
  4. Try again

let me know, thanks

alvarodoune
  • 921
  • 10
  • 13
2

I hope my answer will be helpful for some of you: In most of the cases when my unit tests were not discovered I had to change the the test class access modifier to public. When add a new class (Shift+Alt+C) the default access modifier is internal and most of the time I forget to change it.

  • This set of reasons, which will make them not work on anyone's machine anywhere (except TestDriven.net will half-run them) is covered under the question linked to in the OP: https://stackoverflow.com/questions/16214684/why-is-the-xunit-runner-not-finding-my-tests/ – Ruben Bartelink Nov 10 '21 at 12:16
  • Please don't add "thank you" as an answer. Once you have sufficient [reputation](https://stackoverflow.com/help/whats-reputation), you will be able to [vote up questions and answers](https://stackoverflow.com/help/privileges/vote-up) that you found helpful. - [From Review](/review/late-answers/30303954) – Bakar Nov 10 '21 at 13:35
1

The most common culprit for me has been Visual Studio trying to run the tests using a different architecture than the library it's testing. Unfortunately there are multiple places where it seems this can go wrong.

In VS 2017, try creating a Run Settings file, e.g. Default.runsettings in your test project. If your main lib is x64, the contents should be:

<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
  <RunConfiguration>
    <TargetPlatform>x64</TargetPlatform>
  </RunConfiguration>
</RunSettings>

Then choose this file from Test -> Test Settings -> Select Test Settings File.

Then, under Test -> Test Settings, Default Processor Architecture, choose the correct architecture again.

Be sure to Clean and Build the entire solution. You may need to close and reopen the Test Explorer window. Look for any additional errors in the Output -> Test window, for more clues about incorrect architecture types.

FYI additional Test Settings entries can be found here.

Tobias J
  • 19,813
  • 8
  • 81
  • 66
1

Happend to me when i took my first first walking attempts with IntelliTest in VS 2017.

Sometimes, when the test project gets auto-created by IntelliTest, the assembly reference to Microsoft.ExtendedReflection (...\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\Extensions\Microsoft\Pex\Microsoft.ExtendedReflection.dll) is missing. When added, the generated Tests will show up in test explorer after recompile.

Christian
  • 143
  • 8
1

Disclaimer: it is not about xunit with visual studio 2015, but Visual Studio 2017 with a UWP unit test application (MSTest). I got to this thread searching the same thing so maybe someone else will do the same :)

The solution for me was to update the nuget packages for MSTest.TestAdapter and MSTest.TestFramework. It seems that when you create a unit test app for UWP you don't automatically get the latest versions.

Alex Albu
  • 693
  • 1
  • 12
  • 20
  • I'd suggest asking a self answered question as I did is the best way to sequester such info - feel free to copy paste my entire question and s/xUnit/MSTest/ if you think it makes sense ;) – Ruben Bartelink Jun 20 '17 at 23:28
1

My problem was resolved by installing the nuget xunit.runner.visualstudio

kDar
  • 3,246
  • 4
  • 19
  • 23
1

In my case I have multiple test projects in the same solution, and only one of the projects was not displaying the "Test Explorer"

I went to the "Manage Nuget Package for Solution" by right-clicking on the solution.

I noticed under the "Consolidate" tab there was some "Test" nuget packages that were out of sync between the projects. I clicked on "Install" and my missing tests showed up.

CBBSpike
  • 1,385
  • 1
  • 13
  • 18
1

Here is the solution that worked for us. Not the best but maybe one can benefit.

Background:

  • Our scripts were developed with VS 2013 and used NUnit VS Adapter 2.1..
  • Recently we migrated to VS 2017 and when open the same solution - test wouldn't show in the Test Explorer

Upon Build we would see this message:

[Informational] NUnit Adapter 3.10.0.21: Test discovery starting
[Informational] Assembly contains no NUnit 3.0 tests: C:\ihealautomatedTests\SeleniumTest\bin\x86\Debug\SeleniumTest.dll
[Informational] NUnit Adapter 3.10.0.21: Test discovery complete

Solution (temporary):

  • Uninstall NUnit Adapter 3.10...
  • Install NUnit VS Adapter 2.1..

Now the Tests are shown.

Zoe
  • 27,060
  • 21
  • 118
  • 148
  • Please extract your (at least seemingly) new question to its own post to make this a clear answer :) – geisterfurz007 May 29 '18 at 18:51
  • ... Entitled "why is the NUnit TestAdapter v3 not seeing my NUnit v2 tests? and a) ping here b) an put a "see also " at top (even if it is slightly tenuous), but I'd like this answer removed as it does not fit well with the `xUnit v2 tests` in the title. – Ruben Bartelink May 30 '18 at 02:02
0

Also check if a completely empty app.config file (completely blank with absolutely no markup) is within the test project. This was the culprit in my case.

Gopal Krishnan
  • 968
  • 11
  • 14
0

In my case, I created a new "Solution Configuration" like shown in the image. So when I select my custom one as "Prod", it doesnt recognize TestMehods for some reason. Changing back to "Debug" solves the problem

enter image description here

Emil
  • 6,411
  • 7
  • 62
  • 112
0

I don't know if some of you also use JustMock, but I had to disable the profiler in VS 2017 for test detection to work.

chrisdrobison
  • 1,323
  • 2
  • 13
  • 24
0

I had many projects of different type in my solution and I could not run the Xunit test project. I unloaded all of them except my Xunit project and then rebuild the solution the tests appeared in visual studio and I could run them.

0

You need to update your all packages when you are move VS2015 to VS2017 for discover test in test explorer.

Sachin
  • 1
  • 1
0

I Cleared Temp, %Temp% and Prefetch. Then tried reopening VS and was able to find the test methods

Venkat Ramanan
  • 217
  • 2
  • 8
0

I have test project A and B. Tests in Project A where discovered but the Discovery never stopped for B. I had to manually kill TestHost to make stop.

I did a lot of things this page describes even to the point that I'm unsure as to wheter this was the solution.

Now it worked and the thing I did was to open the Solution and NOT have the Test Explorer up. Instead I just checked the Output window for Tests and I could see the discovery process end and the number of test where equal to A+B. After this, I opened the Test Explorer and then both A and B where present. So:

Uninstall and Install the latest xUnit stuff correctly. Delete the %temp% as mentioned above, Add NuGet Package "Microsoft.TestPlatform.TestHost" Add NuGet Package "Microsoft.NET.Test.Sdk", restart but only check the Tests Output. If it works u'll see

Tomas Hesse
  • 385
  • 3
  • 10
  • Oh, and check the Test target Architecture. x86 or x64 and make sure project and references are inline with your choisce – Tomas Hesse Jan 17 '18 at 13:12
  • Hm, not sure I buy the uninstalling and reinstalling packages or the need for `Microsoft.TestPlatform.TestHost` or `Microsoft.NET.Test.Sdk` but I appreciate the frustration, the documenting of stuff you did in order to reach the endline in your context (will +1 should I manage to verify this as a specific step that makes a difference) – Ruben Bartelink Jan 17 '18 at 13:57
  • Can you mention your VS version in this ? While I'm trying to keep the question and my self-answer version-independent, I suspect anyone reading this and guessing whether it's worth a shot would benefit from that context being edited into your answer. – Ruben Bartelink Jan 17 '18 at 13:58
  • I can add that today it DID NOT work at all!! It is VS 2017 Enterprise. I gave it up today. I unloaded the project and the test will not be run. There is probably something wrong with the project itself. Read somewhere it could be due to async tests in combination with exceptions (NotImplemented) maybe but I'm done with it. There's no valueable info.It just hangs on discovery and some times I have seen the test but not today. – Tomas Hesse Jan 18 '18 at 14:56
  • That sound like a proper pain. If discovery is actually hanging (ie. Test window of Output panel is showing no completion and no errors), it may be useful to attach another copy of VS (via attach to process, Ctrl-Alt-P) to the vstest.discovery.exe host exe within which that takes place. However I suspect that there should be some form of timeout and have not ever heard of anyone actually doing something like this. I hope your problems get simpler some time soon :( – Ruben Bartelink Jan 18 '18 at 21:13
0

Make your test class as public and add annotation as [TestClass]

0

Right click on Test project and select Properties. Change Target framework property from 1.1 to something else (I used 3.1) and everything will run as 1.1 isnt covered anymore :P

Andrew Day
  • 563
  • 10
  • 23
0

Open Outputs -> Tests and see what the error is. In my case, I had this error message:

The framework 'Microsoft.AspNetCore.App', version '5.0.0' (x64) was not found.

After installing .Net SDK 5.0, tests worked immediately: https://dotnet.microsoft.com/download/dotnet/thank-you/sdk-5.0.402-windows-x64-installer

Oleksiy
  • 37,477
  • 22
  • 74
  • 122
0

Make sure your project is not open as a "folder" instead, click the .sln file within the folder.

Once the project is opened using the .sln file, you should be able to build then subsequently run the xUnit tests.

Max Alexander Hanna
  • 3,388
  • 1
  • 25
  • 35
-1

It was that easy for me - the class which contains the test methods must be public. :)

Anna Nikolova
  • 57
  • 2
  • 8
  • This solution has already been posted [on this page](https://stackoverflow.com/a/58484586/2227743). Please don't add duplicates. – Eric Aya Jan 12 '21 at 16:46
  • Hi, I excluded this reason in at the start of the question - this one: https://stackoverflow.com/questions/16214684/why-is-the-xunit-runner-not-finding-my-tests/ is a similar one about why it doesn't work _for anyone_. This question is about "why is in not working on my machine, it normally works" ?! – Ruben Bartelink Jan 13 '21 at 09:50
-1

check the type of test.cs files in property window and it is c# compiler. in my case i have accidentally changed it to the embedresource and faced this issue.

Ajay Kopperla
  • 199
  • 2
  • 5
  • 1
    This would prevent it working on any machine (the OP excludes such reasons); such reasons are catalogued in https://stackoverflow.com/questions/16214684/why-is-the-xunit-runner-not-finding-my-tests/ - can you place the answer there instead please? – Ruben Bartelink Jun 14 '21 at 08:25
  • I agree, but this is what i faced in my scenario and none of them worked for me and finally realized that i had accidentally changed. i know this is very rare case but happened to me – Ajay Kopperla Jun 17 '21 at 09:40
  • Yes, but please log that as an answer to the other question linked in this question! It answers that question, it does not answer this. This question says "it works for everyone but be, what could it be". The other one says "my test wont work no matter what I do" – Ruben Bartelink Jun 18 '21 at 08:02