> I would to know if what good or bad practices and conventions
> (for testfixture's class and methods names...) when using
> nunit (and/or unit testing in general) ?
>
> ...besides writing the tests first... of course ;)
In terms of the names, I think there would have to be several
different sets of conventions, depending on what a test fixture
represents. I usually use the classic fixture orientation,
with a separate TestFixture for each different required fixture.
Others - especially those oriented toward BDD - use a test class
per context. There may be other paradigms. Each such approach
would call for different naming conventions.
Charlie