Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k views

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?
4
votes
2answers
927 views

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. ...
2
votes
1answer
482 views

MSBuild: Copy dependency files before the NUnit task run

We are migrating from MSTests to NUnit. The first step was to migrate all our UnitTests projects which was accomplished using the following msbuild task: <Target Name="RunTests"> <!-- ...
1
vote
1answer
159 views

TestRunConfig does not copy App.config file

Hello I have a UnitTest project, and I added multiple App.config files (never copied to the output directory). I have created runtestconfig files for different configuration I need. ...
1
vote
2answers
421 views

How to make a config file being copied into the test results directory while unit testing?

I have written some unit tests which depends on a configuration file. This file.config gets deployed into the bin\Debug directory of my test project. However, it doesn't seem to get copied into my ...
1
vote
0answers
177 views

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

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 ...
0
votes
1answer
309 views

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. ...