2 minute read

Background

The other day I had one of the teams at my current customer report a strange build error in TFS build. They could tell that it had something to do with “Pex and Moles - Isolation and White box Unit Testing for .NET” but they couldn’t solve it.

The solution they were trying to build was pretty simple and consisted of on Class Library project and two Test projects, one for unit testing and the second for integration testing. It looked something like the picture below:
image

Challenge

I noticed right away that both test projects had moles references to the library which doesn’t have to be a bad thing. But then I also noticed that one of the test projects had a reference to the other test project as well. Could this result in a conflict resolving the correct Moles assembly?

Well if you DO NOT change the assembly version of the library project then you WILL NOT have a problem. But if you’re like us and like to sync your AssemblyVersion and AssemblyFileVersion with the build in TFS then you will run into this trouble. You’ll probably get an error message like:

The type or namespace name ‘Moles’ does not exist in the namespace (are you missing an assembly reference?)

Mind you that this error message is a common compile error in Moles but does also appear in this case. I’ve attached a small solution that mimics this behavior here. (you will need VS2010 and Moles installed to build the zipped solution)

Solution

You get this error because when you add a Moles reference in your test project it adds a reference to a specific version of the Moled assembly (this is of course the default behavior you want in most cases) but when two assemblies have the same Mole reference and they reference each other we get a copy conflict.

To solve this I’ve come up with these solutions:

  1. First of all you should probably break the project reference between the two test projects and then your problems will automatically go away.
  2. When you add a Moles Reference from within Visual Studio you’ll get a reference to a specific version like so:
   <Reference Include="Type.Moles, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />

If you change the property Specific Version on the Moles reference to False then that will solve this issue as well.
image

I wish that the command Upgrade .Moles files.. on the solution level would automatically update the project references with the new versions of the Mole References. But I believe I have to file that request to Microsoft.

image

Enjoy,

Hugo

Comments