up vote 1 down vote favorite
share [g+] share [fb]

My guess is that the current semantics of unit testing involve actually calling the method, i.e., if I have a method MyTest() then that's what gets called. My question is this: is it possible to somehow change the pipeline of the way tests are executed (preferably without recompiling the test runner) so that, say, instead of calling the method directly it's called via a wrapper I provide (i.e., MyWrapper(MyTest))?

Thanks.

link|improve this question

56% accept rate
what does MyWrapper do? There is Setup & TearDown that you can use before/after any call to your test method is called. – shahkalpesh Oct 4 '09 at 5:57
that's not what I'm after – Dmitri Nesteruk Oct 4 '09 at 14:27
feedback

2 Answers

up vote 3 down vote accepted

If you use MbUnit then there's lot of stuff you can customize by defining custom attributes.

The easiest way to do this is to create a subclass of TestDecoratorAttribute and override the SetUp, TearDown or Execute methods to wrap them with additional logic of your choice.

However if you need finer control, you can instead create a subclass of TestDecoratorPatternAttribute and override the DecorateTest method with logic to add additional test actions or test instance actions.

For example, the MbUnit [Repeat] attribute works by wrapping the test's body run action (which runs all phases of the test) with a loop and some additional bookkeeping to run the test repeatedly.

Here's the code for RepeatAttribute: http://code.google.com/p/mb-unit/source/browse/trunk/v3/src/MbUnit/MbUnit/Framework/RepeatAttribute.cs

link|improve this answer
Wow, marking this as the answer, since this is what I was looking for. Thanks! – Dmitri Nesteruk Oct 4 '09 at 14:25
feedback

It depends on how the unit testing framework provides interception and extensibility capabilities.

Most frameworks (MSTest, NUnit etc.) allow you to define Setup and Teardown methods that are guaranteed to run before and after the test.

xUnit.NET has more advanced extensibility mechanisms where you can define custom attributes you can use to decorate your test methods to change the way they are invoked. As an example, there's a TheoryAttribute that allows you to define Parameterized Tests.

I don't know MBUnit, so I can't say whether it supports these scenarios or not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.