prash-wghats / vscode-nxunit-test-adapter

Run your Nunit or Xunit test for Desktop .NET Framework or Mono using the Test Explorer
MIT License
6 stars 2 forks source link

I cannot see my nunit test in the Test Explorer #14

Open mohanna-t opened 3 years ago

mohanna-t commented 3 years ago

Hi, I've been working on getting our unit test up and runningin VS code. We have both Xunit and Nunit tests. I have installed this exnesion and can see the xunit test in the explorer and can run them but I cannot see the Nunit one. And here is my setting.I'm wondering how can I fix this?

{ "dotnet-test-explorer.testProjectPath": "/project/UnitTests/Xero.Core.UnitTests.csproj", "nxunitExplorer.modules": [ "/project/UnitTests/bin/Debug/Xero.Core.UnitTests.dll" ], "nxunitExplorer.skippattern": "project/packages/xunit.runner.console.2.0.0/tools/xunit.console.exe", "nxunitExplorer.logpanel": true, "dotnet-test-explorer.autoExpandTree": true, "testExplorer.showOnRun": true, "testExplorer.showExpandButton": 5, "nxunitExplorer.xunit": "project/packages/xunit.runner.console.2.0.0/tools/xunit.console.exe", "nxunitExplorer.nunit": "C:/Installer/NUnit.Console-3.12.0/bin/net35/nunit3-console.exe", "testExplorer.addToEditorContextMenu": true, }