It's the TestsNUnit, TDD and the role of tests in agile developmentNUnits Generic Test Fixtures- July 3, 2008 One recent addition to NUnit 2.5 is the ability to define generic test fixtures, allowing the same fixture to be reused for multiple types that implement the same interface or even just having common method signatures. For example, the following code tests multiple implementations of IList. TestFixture(typeof(ArrayList)) TestFixture(typeof(List&60;int&62;)) public class IList_Tests&60;TList&62; where TList : IList, new() private ...http://nunit.com/blogs/?p=62 |