I have a interface for which there exists several implementations. I'm setting up a test suite for the interface. Now I want to run all test classes from the suite for each of the concrete implementors.
to clarify, I have a setup like
- TestSpam.java
- TestEgg.java
- TestBacon.java
which are all testing diffrent aspects of my interface IBreakfast, and I'm going to have them organised in a suite called say TestBreakfast. And I want all the diffrent tests to be run for specific implementation specified somehow, preferably once and on/to the suite.
At the testcase level I think I could use parametrise to run for all implementations, but doesn't look like that extends to suites. And also when using parameterise it looks like I would have to hardcode the implementations which feels horribly backwards.
Any idea on how to make this work?