Running XUnit.net Tests with TestDriven.net - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T12:51:05Zhttp://stackoverflow.com/feeds/question/327582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327582/running-xunit-net-tests-with-testdriven-net6Running XUnit.net Tests with TestDriven.netEric Neunaber2008-11-29T14:35:45Z2009-04-05T21:14:52Z
<p>I've used NUnit for years and I wanted to try XUnit. So I installed XUnit and ran the executable that allowed you to run XUnit via TD.net. </p>
<p>I can't seem to run more than one test at a time. With NUnit + TD.net, I could click on the filename in the solution and run all the tests in the file. I can't seem to do that with XUnit + TD.net. </p>
<p>Is this something I can do?</p>
http://stackoverflow.com/questions/327582/running-xunit-net-tests-with-testdriven-net/332687#332687-1Answer by Eric Neunaber for Running XUnit.net Tests with TestDriven.netEric Neunaber2008-12-02T00:29:39Z2008-12-02T00:29:39Z<p>I posted this over the weekend, so wanted to give a bump</p>
http://stackoverflow.com/questions/327582/running-xunit-net-tests-with-testdriven-net/475541#4755416Answer by ASalvo for Running XUnit.net Tests with TestDriven.netASalvo2009-01-24T05:04:33Z2009-01-24T05:04:33Z<p>Short Answer: Copy the following into a .reg file on your computer, updating the path to where your Xunit dll resides, and then import it into your registry. </p>
<p>Windows Registry Editor Version 5.00</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\MutantDesign\TestDriven.NET\TestRunners\xunit]
@="4"
"AssemblyPath"="C:\_Files\Programs\Programming\XUnit\xunit-1.1.0\xunit.runner.tdnet.dll"
"TypeName"="Xunit.Runner.TdNet.TdNetRunner"</p>
<p>Long Answer:</p>
<p>I've run into this problem a couple of times, both on 32 and 64 bit versions of windows. TestDriven.net uses the registry to store a list of test frameworks avaialable. XUnit comes with an installer xunit.installer (run as admin) which is supposed to make the correct registry entries. </p>
<p>Usually I can get TD.net to work with XUnit for awhile, then I loose support. Today I was trying to get it to work on Windows 7 beta for the first time and couldn't get it to work at all. </p>
<p>After some searching I found the registry key that the information about the test framework should be entered in. HKEY_LOCAL_MACHINE\SOFTWARE\MutantDesign\TestDriven.NET\TestRunners</p>
<p>Now on 64bit systems, there is also a key under the Wow6432Node, which is where it looks like the Xunit installer was setting the registry key.</p>
<p>Anyway, I exported the the the xunit registry key from HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MutantDesign\TestDriven.NET\TestRunners\xunit and, edited it, removing the Wow6432Node and then imported it. After restarting visual studio, everything works. I'll keep the registry file around in case it breaks again.</p>
http://stackoverflow.com/questions/327582/running-xunit-net-tests-with-testdriven-net/590903#5909038Answer by Andrew Davey for Running XUnit.net Tests with TestDriven.netAndrew Davey2009-02-26T15:04:14Z2009-02-26T15:04:14Z<p>Make sure you run the installer that comes with XUnit.net.
There is a button to click that will install the TestDriven.net support.</p>
<p>The problem you are having is described here:
<a href="http://www.codeplex.com/xunit/Wiki/View.aspx?title=FaqTestDrivenNet&referringTitle=Home" rel="nofollow">http://www.codeplex.com/xunit/Wiki/View.aspx?title=FaqTestDrivenNet&referringTitle=Home</a></p>