
On Thu, 2010-01-21 at 21:46 +0100, Holger Krekel wrote:
At least that's my and some of my users experience with it. And is the reason why I came up with a new method to do test fixtures that allows to directly manipulate setup state in a single place instead of all across test suites. Basically test functions receive objects ("funcargs") that are created/handled in factories. Loose coupling here allows to have the same setup used across many test modules efficiently. Obviously different from the testresources approach although i share a number of related design considerations and goals.
Yup, I quite liked the funcargs approach you have. Its fitting into a dramatically different unittest framework but we seem to have otherwise generated very similar solutions. -Rob