MbUnit cannot recognize test assemblies compiled with MSBuild on Windows Server 2003 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:18:38Z http://stackoverflow.com/feeds/question/528093 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/528093/mbunit-cannot-recognize-test-assemblies-compiled-with-msbuild-on-windows-server-2 1 MbUnit cannot recognize test assemblies compiled with MSBuild on Windows Server 2003 Jon Limjap 2009-02-09T13:14:30Z 2009-02-21T09:48:32Z <p>I've recently installed MbUnit version 2.4.2.355 on our build server which runs via Cruise Control.NET and NAnt, on a Windows Server 2003 machine with .NET Framework 3.5 SP1 installed.</p> <p>I've checked every nook and cranny of the build scripts, and the NAnt output report on CC.NET tells me that the test project builds fine.</p> <p>This is the NAnt script:</p> <pre><code>&lt;target name="compiletests" description="Compiles unit tests separately"&gt; &lt;exec program="${netframework.dir}\msbuild.exe"&gt; &lt;arg line="C:\dev\PROJ3.1\trunk\src\PROJ\Customer\CustomerUnitTests\Company.CustomerUnitTests.csproj /t:Rebuild /p:Configuration=Debug"&gt;&lt;/arg&gt; &lt;/exec&gt; &lt;/target&gt; </code></pre> <p>And the output is the ff:</p> <blockquote> <p>[exec] Company.CustomerUnitTests -> C:\dev\PROJ.1\trunk\src\PROJ\Customer\CustomerUnitTests\bin\Debug\Company.CustomerUnitTests.dll [exec] Done Building Project "C:\dev\PROJ.1\trunk\src\PROJ\Customer\CustomerUnitTests\Company.CustomerUnitTests.csproj" (Rebuild target(s)). [exec] Build succeeded. [exec] "C:\dev\PROJ3.1\trunk\src\PROJ\Customer\CustomerUnitTests\Company.CustomerUnitTests.csproj" (Rebuild target) (1) -></p> </blockquote> <p>What this means is that the build of the unit test assembly succeeded.</p> <p>Thing is, at the end of the NAnt outputs is this:</p> <blockquote> <p>mbunit-tests: [mbunit] MbUnit 2.4.2.355 test runner [mbunit] No test assemblies found in test</p> </blockquote> <p>I've gone console and tried using MbUnit.Cons.Exe to manually test the compiled assemblies. The results went like this:</p> <ul> <li>Test assemblies built using my Windows XP SP3 machine were properly recognized and the tests were being run properly on my machine, and on any other dev machine for that matter.</li> <li>Test assemblies built in the build server running Windows Server 2003 weren't being recognized as test assemblies; I tried copying those files into my XP machine and they weren't recognized either.</li> </ul> <p>I'm now wondering: what is the difference between a test assembly and a non-test assembly? I'm sure it has something to do with the <code>Test</code> and <code>TestFixture</code> attributes, but in my case, why are the assemblies compiled in WinXP machines compiled as tests, and those compiled the Win2K3 machine not recognized?</p> <p>Hope someone has a clue on this.</p> http://stackoverflow.com/questions/528093/mbunit-cannot-recognize-test-assemblies-compiled-with-msbuild-on-windows-server-2/528841#528841 2 Answer by Jeff Brown for MbUnit cannot recognize test assemblies compiled with MSBuild on Windows Server 2003 Jeff Brown 2009-02-09T16:26:54Z 2009-02-09T16:26:54Z <p>There is no fundamental difference as to whether any particular assembly is considered a test assembly.</p> <p>My guess is that your dev machine is running a slightly different build of MbUnit than your build server. MbUnit v2 has cross-version compatibility issues that can cause it not to recognize tests properly (because it attempts to load a different version of the framework assembly than is installed).</p> <p>Incidentally, these issues have largely been resolved in MbUnit v3.</p> <p>If you haven't done so already, you may find it helpful to install a copy of MbUnit in your source tree. That will ensure that a consistent version is always used everywhere.</p> http://stackoverflow.com/questions/528093/mbunit-cannot-recognize-test-assemblies-compiled-with-msbuild-on-windows-server-2/572702#572702 4 Answer by zihotki for MbUnit cannot recognize test assemblies compiled with MSBuild on Windows Server 2003 zihotki 2009-02-21T09:48:32Z 2009-02-21T09:48:32Z <p>First of all check <a href="http://code.google.com/p/mb-unit/issues/detail?id=103" rel="nofollow">this issue</a>.<br /> If this not help, you need to check target platform (project properties, build) to be "Any CPU". After this try to open assembly which is generated on your build machine using Reflector. May be generated files are corrupted. And also could you please try to build the project manually using VS and load generated tests in MbUnit.</p>