up vote 43 down vote favorite
9
share [g+] share [fb]

When I build a unit test project before the tests are executed the test output is copied to a TestResults folder and then the tests are executed. The issue I'm having is that not all the files in the Debug/bin directory are copied to the TestResults project.

How can I get a file that is copied to the Debug/bin directory to also be copied to the TestResults folder?

EDIT: Here is a link to a similar question on another site (no answer there though), http://www.eggheadcafe.com/software/aspnet/29316967/files-and-unit-testing-wi.aspx

link|improve this question

feedback

6 Answers

up vote 52 down vote accepted

The standard way to do this is by specifying the deployment items in the .testrunconfig file, which can be accessed via the Edit Test Run Configurations item in the Visual Studio Test menu or in the Solution Items folder.

link|improve this answer
Exactly what I was looking for. Thanks! – spoon16 Oct 22 '08 at 23:02
4  
In VS2010 this is: Test/Edit Test Settings/local, then in the list, select "Deployment", check the "Enable..." box and add the file(s). – Marcel Jun 16 '10 at 12:54
2  
You may have to close your solution (or even Visual Studio) and reopen before this change takes effect properly – RobV Aug 18 '10 at 14:06
feedback

You can specify deployment attribute like an example shown below; Also you need to set "Content" & "Copy if newer" property ( there is no documentation on the later settings, but you have set those to make it work.

[TestMethod]
[DeploymentItem("mytestdata.xml")]
public void UploadTest()
{



}
link|improve this answer
feedback

All three answers are correct, depending on your needs.

Adding files to deploy in the .testrunconfig (.testsettings in VS2010) will copy all of those files to every test output folder, even for unrelated tests run in isolation. If you run one test, all the test data files listed in the deployment section of .testssettings will be copied to the test output folder.

In my tests I need to copy an expected XML file to the test output folder to compare with the actual test output XML. I use the DeploymentItem attribute to only copy the XML file related to the test(s) being run. In VS2010 I had to enable deployment in the .testsettings file (but not add any paths) and then reference the XML file path relative to the TestProject in the DeploymentItem.

Hope this helps.

link|improve this answer
feedback

Try out the Post-Build event command line from within Visual Studio (if you are using that IDE).

link|improve this answer
I am, but that seems like a bit of a hack. This has to be a fairly common scenario and I hope there is just some option or property I am not properly setting. – spoon16 Oct 22 '08 at 21:23
feedback

I had to turn on "Enable Deployment" under Test -> Edit Test Settings -> Local -> Deployment for the [DeploymentItem] attribute to work.

link|improve this answer
This is true... I just enabled it and now the attribute works. Thanks! – Miguel Angelo Dec 26 '11 at 18:16
feedback

I had a similar problem but mine had to do with pointing to the TraceAndTestImpact.testsettings file instead of the Local.testsettings file. You can change from one to the other under the Test/Select Active Test Settings menu.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.