Search Results

2
votes
2answers
158 views

Extend xUnit.NET to use custom code when processing a class and locating test methods

I'm a big fan of the xUnit.NET framework; I find it light, simple, clean, and extensible. Now let's say that I have a class like so: public class AdditionSpecification { s …
1
vote

Is there a test runner for .NET tests that can run multi-threaded to take advantage of multi-core machines?

Just yesterday i came across this post by Damon Payne: http://www.damonpayne.com/2008/0 …
0
votes

Extend xUnit.NET to use custom code when processing a class and locating test methods

So it turns out that I was looking for the ITestClassCommand.EnumerateTestMethods() method. The default xUnit.NET test runner will iterate over all the classes in your test assembly …