testrunconfig

How to create the vsmdi/testrunconfig file when importing a Visual Studio test project?

When I add an existing test project, my solution lacks the vsdmi and the testrunconfig files. How to create it? ...

How to deploy directories to test output folders in Visual Studio 2008 Team System?

When open my LocalTestRun.testrunconfig file Deployment section I can choose which files are deployed to the Test output folders, but I need that a specific file to be deployed in a given subfolder. How to do that? ...

msbuild: TestRunConfig for NUnit

We are migrating from mstest to NUnit. The first step was to migrate all our UnitTests projects which was accomplished using the following msbuild task: <Target Name="RunTests"> <!-- The location of the necessary tools to run nunit tests --> <PropertyGroup> <NUnitToolPath>C:\Program Files\NUnit 2.5.2\bin\net-2.0</NUnitToolPath> <...

How to use multiple localtestrun.testrunconfig files in a solution

Hi, I am interested in how Visual Studio picks up a localtestrun.testrunconfig file and then how it uses it to establish which files to deploy to the test run folder? I currently have two problems: I have a visual studio 2008 solution which has both a web application project and a web services host project. I would personally prefer...

Why don't I get code coverage results for C++/CLI project in Visual Studio 2010?

I've recently upgrade my solution to Visual Studio 2010. I have 4 projects I want to cover using unit tests - 3 C# and 1 C++/CLI. I get coverage for the C# projects but not for the C++/CLI project. I did get for all of them in Visual Studio 2008. I've configured the assemblies using testrunconfig -> Data and Diagnostics -> Code Cover...

Configure timeout for setup script in LocalTestRun.testrunconfig?

Hi, I am trying to run mstest automation which has a setup script which runs before actual test execution begins. The time required for setup script execution is not configurable in the UI and execution fails if setups job does not complete execution in 5 minutes. Does anyone know if it can be configured directly in LocalTestRun.testr...

Test Run aborted when the option "Abort a test run if its total execution time exceeds" is unchecked in TestRunConfig file....

Hello team, We've around 5 Test Runs scheduled as part of a build (VS2008) to run nightly. I have configured timeout values of my TestRunconfig file with following values, I haven't set any "runTimeout" value - so i assume this test run will run infinite but each test run should only run for maximum of 5 mins. However, when the test...