Hello
Actually I've detected a small problem by using n-unit.
Let us assume that by running a single test class in n-unit all the test in n-unit will succeed.
This is valid for all those tests in that class .
But If we start all classes. Some tests will fail some tests not. The result is not reproducible in that sense that allways the same test will fail.
The problem source is the multiple use of routines attributed with [TestFixtureSetUp] and [TestFixtureTearDown]. In normal cases each class has its on set of [TestFixtureSetUp] and [TestFixtureTearDown] attributed routines but if we start them, a set of those routines will act parallel.
Questions:
- Do we have to do something?
- Who has to do something?
Best regards
Wolfgang