I'm currently maintaining an "old" system written in C#.net, removing some obsolete features and doing some refactoring. Thanks god, the previous guy wrote some unit tests (MSTests). I quite comfortable with JUnit tests, but didn't do yet much with MSTests.

The test methods have a DeploymentItem attribute, specifying a text file which is parsed by the business logic method that is being tested and a 2nd DeploymentItem where just a path has been specified containing a bunch of TIF files that have to be deployed too.

[TestMethod()]
[DeploymentItem(@"files\valid\valid_entries.txt")]
[DeploymentItem(@"files\tif\")]
public void ExistsTifTest()
{
   ...
}

The tests worked before, but now I had to change the names of the TIF files contained in the \files\tif directory. According to a rule, the TIF filenames have to match a certain pattern which is also checked by the ExistsTifTest() method. Now I had to change the filenames in order to adapt them to the new requirements and suddently the TIF files are no more being deployed as before.

Can someone give me a hint why this happens or what may be the cause? The same thing happens also if I add a new text-file say "my2ndTest.txt" beside the "valid_entries.txt" in the \files\valid\ directory with the according DeploymentItem attribute on the test method. The file doesn't get deployed?

I got the images now deployed by defining the deployment path directly in the testrunconfig, but I'd like to understand why these things happen or why for instance my new file "my2ndTest.txt" doesn't get deployed while the others do.

Thanks a lot.

link|improve this question

73% accept rate
feedback

8 Answers

up vote 25 down vote accepted

DeploymentItem is a bit of a mess.

Each file in your solution will have a "Copy To Output Folder" setting in VS.NET. You need this to be "Copy Always" (or similar) in order to get the files into the output folder.

Check that you've got this set for the new files. If you don't have this set then the files won't get copied to the output folder, and then they can't be deployed from the output folder to the folder where MSTest does it stuff.

Personally, if I have files that I need for my unit tests I've found that embedding those files as resources into an assembly, and having that assembly "unpack" itself during the tests is a more predictable way of doing things. YMMV.

link|improve this answer
That was exactly the issue. You're right, these DeploymentItems are a bit messy. Thanks a lot. – Juri May 20 '09 at 11:12
1  
Copy To Output Directory never affects how MSTest deploys files. This answer is incorrect. – kzu Mar 16 '11 at 9:35
7  
On VS2010 Premium, making this change (and no other change) caused the file to deploy. Thus, I conclude based upon actual evidence that it DOES affect MsTest deployment. – JonStonecash Apr 5 '11 at 14:35
1  
Agreed. I've seen this single change turn DeploymentItem frowns upside down. – Martin Peck Apr 27 '11 at 13:17
On VS2010 Premium, be sure to check the answer below about enabling Deployment for the Test Settings. However, I still can't get DeploymentItem to work as advertised. Only the Copy To Output Directory setting seems to be reliable for both MSTest and Resharper tests. – Alan McBee Dec 17 '11 at 9:11
show 1 more comment
feedback

In VS2010, my Local.testsettings had the "Enable Deployment" unchecked and the DeploymentItem attribute was not working. I checked it and everything worked fine. I hope this helps!

link|improve this answer
I've been banging my head against a brick wall for ages trying to get it to work.... thankyou! – mjmcloug Jul 29 '11 at 11:57
1  
I think it would have been nice if the framework issued a warning that DeploymentItem attributes are being ignored if this setting is turned off. I also put a nice concave impression into my desk. – Alan McBee Dec 17 '11 at 8:55
feedback

If you go into your .testrunconfig file and under deployment uncheck "Enable Deployment", the tests will run in their normal location, and everything will work like it does when running the app outside a unit test.

link|improve this answer
1  
Great post, didn't know this existed. – Chris Marisic Oct 19 '10 at 22:04
Had some issues with this as well. As a PM I do not have access to all tools used by dev. In this case ReSharper copied the file correctly while MSTest failed to do so. --> I experienced errors while dev was OK. Change to 'Test-> Edit Test Settings -> Local settings -> Deployment' including the file in question fixed this for my MSTest use. – sonstabo Jun 22 '11 at 10:14
feedback

For hopefully helping someone else out: I tried all the suggestions here and still my deployment item was not being copied.

What I had to do (as suggested here) was to add a second parameter to the DeploymentItem attribute:

[DeploymentItem(@"UnitTestData\TestData.xml", "UnitTestData")]
link|improve this answer
1  
This worked for me - where the deployment item was a culture-specific dll. Thanks! – Julia Hayward May 14 at 15:57
feedback

This probably doesn't relate to your exact problem, but here's a couple of tips I found with the [DeploymentItem] attribute.

  1. Copy to output directory should be set to Copy Always.

It does NOT work when used with the [TestInitialize] attribute

[TestInitialize]
[DeploymentItem("test.xlsx")]
public void Setup()
{

It should be on your [TestMethod], e.g.

    [TestInitialize]
    public void Setup()
    {
        string spreadsheet = Path.GetFullPath("test.xlsx");
        Assert.IsTrue(File.Exists(spreadsheet));
        ...
    }

    [TestMethod]
    [DeploymentItem("test.xlsx")]
    public void ExcelQuestionParser_Reads_XmlElements()
    {
        ...
    }
link|improve this answer
feedback

I had Deployment flag disabled first. But even after I enabled it, for some unknown reason nothing even target DLLs would still be copied. Accidentally I opened Test Run window and killed all the previous runs and magically I found all the DLLs and files I needed in the test folder the very next run... Very confusing.

link|improve this answer
feedback

Since I always found the DeploymentItem attribute a mess, I do the deployment of such files by using the post-build script. - Make sure the files you wanna copy has the Copy Always property set. - Modify your test project post-build script to copy the files from build target folder(Bin\Debug) to the location where your test is expecting them.

link|improve this answer
feedback

Try this for VS2010. So you do not need to add DeployItems for every tif
Remove the
[DeploymentItem(@"files\valid\valid_entries.txt")]
[DeploymentItem(@"files\tif\")]
Add a test configuration.
- right-click on solution node in solution explorer
- Add -> New Item...
- Select Test Settings node on the left, select the item on the right
- Click Add
Call it eg TDD
Choose TDD under TestMenu: Edit Testsettings.
Click on the Deployment. Enable it and then Add the files and directories that you want.There will be a path relative to the solution. The files will be put on. The original file are for example here:
D:\Users\Patrik\Documents\Visual Studio 2010\Projects\DCArrDate\WebMVCDCArrDate\Trunk\WebMVCDCArrDate\Authority.xml
When I run my unit test it gets copied to
D:\Users\Patrik\Documents\Visual Studio 2010\Projects\DCArrDate\WebMVCDCArrDate\Trunk\WebMVCDCArrDate.Tests\bin\Debug\TestResults\Patrik_HERKULES 2011-12-17 18_03_27\Authority.xml
in testcode I call
it from:
[TestMethod()] public void Read_AuthorityFiles_And_ParseXML_To_Make_Dictonary()
{
string authorityFile = "Authority.xml";
var Xmldoc = XDocument.Load(authorityFile);

There is no need to choose Copy Always; put the files in the testproject; add hardcoded paths in the testcode. For me this solution worked best. I tryed with DeploymentItem, copy always but it was not to my liking.

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.