Does redirecting assembly binding work for unit testing with a test runner? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T22:17:49Zhttp://stackoverflow.com/feeds/question/465754http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/465754/does-redirecting-assembly-binding-work-for-unit-testing-with-a-test-runner0Does redirecting assembly binding work for unit testing with a test runner?George Mauer2009-01-21T15:30:23Z2009-01-21T16:01:47Z
<p>Ok, so here's the full description of the problem I'm having:</p>
<p>I am trying to use <a href="http://code.google.com/p/nunit-extmethods/" rel="nofollow">NUnit ExtensionMethods</a> but whenever I run a test containing one of the extension methods using TestDriven.Net or if I just flat out try to load the assembly using a test-runner GUI (Icarus or NUnit) I get a FileNotFoundException.</p>
<p>Pounding head against a wall and digging in further I think I know what's wrong. Cue reflector and yep, I can see that NUnit.Framework>ExtensionMethods.dll has a reference to </p>
<pre><code>nunit.framework, Version=2.4.6.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77
</code></pre>
<p>and my current version of nunit that I'm including is</p>
<pre><code>nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77
</code></pre>
<p>Now I have never used assembly re-direction before but it seems like it would be a simple matter of adding an App.Config with the following lines:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity
name="nunit.framework.dll"
publicKeyToken="96d09a1eb7f44a77" />
<bindingRedirect oldVersion="2.4.6.0" newVersion="2.4.8.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
</code></pre>
<p>and it is my understanding that calls to the 2.4.6 version (which does not exist on this machine) should automatically redirect to the 2.4.8 version.</p>
<p>This does not work however, and I suspect (but have not yet confirmed) that this is because test runners do not automatically read app.config files.</p>
<p>So my question's are as follows:</p>
<ol>
<li><p>Am I right in my diagnosis of the
problem?</p></li>
<li><p>Is assembly redirection the
appropriate solution and am I doing
it right?</p></li>
<li><p>How do I get this to work with the
test runner?</p></li>
</ol>
http://stackoverflow.com/questions/465754/does-redirecting-assembly-binding-work-for-unit-testing-with-a-test-runner/465862#4658621Answer by csgero for Does redirecting assembly binding work for unit testing with a test runner?csgero2009-01-21T16:01:47Z2009-01-21T16:01:47Z<p>This should work if you put the configuration settings in the correct .config file. Which one that is depends on the environment you are using to run the tests, but both NUnit and TestDriven.NET should support using <em>testassembly</em>.dll.config.<br/>
As for this is the appropriate solution, I would say yes. The only other possibility would be to use a publisher policy file, but you would need the private key used to compile NUnit.</p>