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? ...
When I add an existing test project, my solution lacks the vsdmi and the testrunconfig files. How to create it? ...
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? ...
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> <...
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...
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...
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...
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...