vote up 2 vote down star

This question regards unit testing in Visual Studio using MSTest (this is important, because of MSTest's execution order). Both the method marked [TestInitialize] and the test class constructor will run before each test method.

So, the question is, what do you tend to do in each of these areas? Do you avoid performing certain activities in either? What is your reason: style, technical, superstition?

flag

2 Answers

vote up 0 vote down check

I prefer to use the [TestInitialize] method to perform instantiation of the object being tested and it's parameters. I only perform work in the constructor if it is necessary to instantiate a testing base class (which is usually where I create or refresh repositories, etc). This helps me keep the test framework code and test code separate logically and physically.

link|flag
vote up 1 vote down

The object you test doesn't need to be instancied in the [TestInitialize] method. You can test the constructor of your object in a test method [Test].

Object in the [TestInitialize] can be to setup your persistance storage or to prepare value that the object tested will used in the tests.

link|flag
I know this. You can instantiate the object inline with the declaration if possible. My question is what do you do in either of those places. And why? – ajmastrean Dec 2 '08 at 16:21
I answered that question in my answer... read again. – Daok Dec 3 '08 at 16:51

Your Answer

Get an OpenID
or

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