vote up 0 vote down star
1

I'm using NUnit (but have also tried this with VS testing) and I'm having a problem getting TestDriven.Net to recognize and run different test fixtures in a single .cs file.

I'm trying to do a little BDD style testing. So what I have in one file is something like this:

[TestFixture]
public class when_view_is_ready : AAA
{
  // setup, tests
}

[TestFixture]
public class when_something_happens : AAA
{
   // setup, tests
}

When I run this in the NUnit GUI runner it sees the different test fixtures just fine and runs all the tests. When I run it via TestDriven.NET context menu and watch the Output window, it only runs the first fixture's tests. Is there a reason for this? Can this be fixed?

I think I'm running TestDriven.Net 2.0. I can't be certain; not exactly sure how to check my version.

Appreciate any help!

flag

63% accept rate
1  
You know that it runs the one your cursor/mouse is currently over, right? – dr. evil Jul 8 at 23:33
My mouse is over the filename in the Solution Explorer... So I would assume it would do the entire file. Anyway, that still doesn't answer my question. How can I get the behavior I want? – Chris Holmes Jul 9 at 15:22

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.