Comment 0 for bug 664018

Revision history for this message
Rechenelf (matklaus) wrote :

Obviuosly, the current implementation is the following:
- First, the Properties which are used for TestCaseSource are asked (static or not)
- Then the methods attributed with TestFixtureSetUp are called.
- Then test startup is done
and the test called.

It is possible to change the first two steps? The current behaviour is a problem for us. Because the property for the TestCaseSource should have some data from the database which the Connection is established in FixtureSetUp. The parameter vor the database, username, password and so on are set in the constructor of the class.

Now, I have hacked they in manually. This is not quite a nice way. ;-)