views:

701

answers:

3

I've created some MbUnit Test Fixtures that have SetUp methods marked with the SetUp attribute. These methods run before the tests just fine using the MbUnit GUI, the console runner, and the ReSharper MbUnit plugin. However, when I run the tests with TestDriven.NET it does not run the SetUp methods at all.

Does anyone know if this is a bug with TestDriven.NET or if I have something setup wrong?

+2  A: 

After having this problem for weeks on Vista 64, I found a post by Dave Bouwman just today, and it fixed this problem.

http://blog.davebouwman.net/2008/08/05/TroubleRunningMbUnitTestsWithTestDrivennetOnVista64.aspx

Lance Fisher
+3  A: 

No longer an issue with recent versions of Gallio since v3.0.4. Just make sure to use the 64-bit installer.

Jeff Brown
Yep. I'm using that now, and I've been happy.
Lance Fisher
A: 

Did you remember to make the setup function public?

I've done that before, but that wasn't the issue here.
Lance Fisher