How to run NUnit v2.4.8 tests with NAnt 0.86 beta ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:45:36Z http://stackoverflow.com/feeds/question/45415 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/45415/how-to-run-nunit-v2-4-8-tests-with-nant-0-86-beta 4 How to run NUnit v2.4.8 tests with NAnt 0.86 beta ? Romain Verdier 2008-09-05T08:14:39Z 2008-10-01T19:58:47Z <p>I tried recently to use NAnt (beta 0.86.2962.0) to run some unit tests compiled with the last stable version of NUnit (v2.4.8) without any success. </p> <p>The error I get is the following :</p> <p>[nunit2] Assembly "C:\Dev\MySample\bin\tests\My.Sample.Tests.dll" contains no tests.</p> <p>Of course, the assembly contains tests that I can run from any runner, like NUnit one, TestDriven or Resharper. I would like to use &lt;nunit2> task, and not directly the &lt;exec> one, but I'm wondering if it is still possible, even using app.config files to bind assembly versions.</p> http://stackoverflow.com/questions/45415/how-to-run-nunit-v2-4-8-tests-with-nant-0-86-beta/46298#46298 0 Answer by Cory Foy for How to run NUnit v2.4.8 tests with NAnt 0.86 beta ? Cory Foy 2008-09-05T16:55:23Z 2008-09-05T16:55:23Z <p>Hi Romain,</p> <p>What was the error you ran into? Can you post it? </p> http://stackoverflow.com/questions/45415/how-to-run-nunit-v2-4-8-tests-with-nant-0-86-beta/159437#159437 3 Answer by Don Kirkby for How to run NUnit v2.4.8 tests with NAnt 0.86 beta ? Don Kirkby 2008-10-01T19:58:47Z 2008-10-01T19:58:47Z <p>I can't remember why, but I gave up on using the &lt;nunit2> task and I've been using the &lt;exec> task and nunit-console.exe happily. If it helps, here's my test target that runs NUnit and FxCop. Note that it skips them if the executables aren't in the Windows path.</p> <pre><code>&lt;target name="test" description="Run unit tests" depends="build"&gt; &lt;property name="windows-path" value="${string::to-lower(environment::get-variable('PATH'))}"/&gt; &lt;property name="nunit-in-path" value="${string::contains(windows-path, 'nunit')}"/&gt; &lt;echo message="Tests skipped because no NUnit folder was found in the Windows path." unless="${nunit-in-path}"/&gt; &lt;exec program="nunit-console.exe" if="${nunit-in-path}"&gt; &lt;arg file="../MyProject/MyProjectTest.nunit"/&gt; &lt;/exec&gt; &lt;property name="fxcop-in-path" value="${string::contains(windows-path, 'fxcop')}"/&gt; &lt;echo message="FxCop skipped because no FxCop folder was found in the Windows path." unless="${fxcop-in-path}"/&gt; &lt;fxcop projectFile="../MyProject/MyProject.fxcop" directOutputToConsole="true" failOnAnalysisError="true" if="${fxcop-in-path}"/&gt; &lt;/target&gt; </code></pre>