Does NUnit create a new instance of the test fixture class for each contained test method nowadays?

Viewed 4220

As written in a fairly old book XUnit Patterns NUnit 2.0 did not create new test fixtures for each test, and because of that if tests were manipulating some state of fixture it became shared and could cause various bad side effects.

Is this still the same? I tried to find it on official site but failed, and havent used NUnit for a while.

3 Answers
Related