I want to scan my assembly for all classes that claim to implement a particular interface or base class, and run a set of tests on an instance of each of those classes.
I was hoping that the TypeFixture ProviderFactory would give me a way to do this. However (despite the examples leading me on by using IEnumerable :-) it seems that I must write a separate method for each instance I want to provide to the tests. What I am looking for is something more like the Factory methods of CombinatorialTests, which return a list of items, each item in the list becoming a test. I may in fact end up using the Combinatorial Test for this. Any ideas? Thanks, Marc
