1

Parameterized Unit Testing is great when you have X unit test * Y configurations.

I have 3 unit tests, and each must run in 5 particular situations.
I use xUnit.net's Theory/PropertyData feature, it works well.

PROBLEM: In the Test Runner UI, there is one green/red symbol per unit test, which means 3.
It makes it difficult to evaluate progress: the symbol is red until ALL configurations work perfectly.
I want 15 symbols, one per unit test * configuration, to know what particular combination is going wrong.

How can I get 15 symbols?
I am OK with using another xunit.net UI.

enter image description here

2013 UPDATE: I ended up switching to NUnit, which has this feature.

Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
  • It seems that there is no solution with xunit.net so I asked here about other test frameworks: http://stackoverflow.com/q/13393765 – Nicolas Raoul Nov 15 '12 at 08:27

1 Answers1

1

Go upvote this issue which describes your problem.

Ruben Bartelink
  • 59,778
  • 26
  • 187
  • 249
  • +1 That describes my problem, but also emcompasses the notion of debugging a particular configuration, which is probably very tricky to implement. I would be satisfied with just fail/success reports. – Nicolas Raoul Nov 15 '12 at 02:47
  • Accepting as it kind of proves that the feature I want is not implemented yet (otherwise they would talk about it at that page). – Nicolas Raoul Nov 15 '12 at 08:25