Tagged Questions
3
votes
2answers
780 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
{
static int result;
...