Questions tagged [vstest]

Visual Studio Test (VSTest.Console.exe) is a test runner developed by Microsoft.

Visual Studio Test (VSTest.Console.exe) is a test runner developed by Microsoft.

It can run automated unit and coded UI tests from a command line, and is used in place of MSTest.exe beginning with Visual Studio 2012.

unit tests are natively supported, but it can also run other 3rd party unit test frameworks (eg. , etc) when configured either as an installed extension or via the /TestAdapterPath path.

See VSTest.Console.exe command-line options for more information.

368 questions
0
votes
1 answer

Run Visual Studio unit tests in a specific folder from command line

I am aiming to find a way to run the tests contained in a group of assemblies from command line. The tests have been built using Visual Studio Testing Framework and the assemblies are all located in the same folder. What I want to extract are the…
simoneL
  • 602
  • 1
  • 7
  • 23
0
votes
1 answer

Can not run vstest.console.exe for Windows Store app on Azure Windows 8.1

When i trying to launch it it breaks with error: C:\Users\xakpc\.jenkins\workspace\App>"C:\Program Files (x86)\Mi crosoft Visual Studio 12.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vst est.console.exe"…
xakpc
  • 1,709
  • 13
  • 27
0
votes
2 answers

vstest executionengine error pdbs missing

I'm running VS2013 premium and it's built-in testing engine. Earlier today is started throwing the following errors for any test. I've tried re-starting VS bu that didn't help, any ideas? 'vstest.executionengine.x86.exe' (CLR v4.0.30319:…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
0
votes
1 answer

What is the default VS/resharper test executor vstest or mstest?

This might have been asked several times but I couldn't find a clear and precise answer What is the default visual studio unit test executor? I mean the one used when I trigger a unit-test run from the test explorer window Also what is the…
lorenzo.urbini
  • 113
  • 1
  • 10
0
votes
1 answer

Executing vstest.console.exe remotely results in exit code: 559038737

We are trying to run unit tests on a remote windows machine by invoking vstest.console.exe from within Java (using Apache's commons library). During execution, we are seeing the following logs: Command being executed: vstest.console.exe…
Vivek Kodira
  • 2,764
  • 4
  • 31
  • 49
-1
votes
1 answer

How to do linkage between automated integration tests (C#) and features/scenarios in Azure DevOps?

We have automated integration tests and we are using VSTest to execute them in our pipeline in Azure DevOps. We have also features/scenarios stored in Azure DevOps. Is there any way how to create linkage between automated test and feature/scenario…
Olin
  • 1
-1
votes
1 answer

Azure Devops VSTEST Error: The process 'C:\Program Files\dotnet\dotnet.exe' failed with exit code 1

I am having an error in the dotnet Core step I am trying to integrate my selenium test to Azure devops This the logs of the dot net step 2020-10-16T03:11:25.7523865Z ##[section]Starting: Run Selenium 2020-10-16T03:11:25.8123424Z…
-1
votes
1 answer

How to provide multiple test categories in vstest task in azure pipelines

My project has some Nunit tests with certain tags called categories. For example: 32 bit app tests have x32 as tag and 64 bit app tests have x64 as tag. Now using vstest task i am able to run tests for one category like this: TestCategory=x32 when…
1 2 3
24
25