Is it possible to get a TestRunner to run a Test Suite that's been created programmatically?
The Block4JunitTestRunner for example takes the Suite class as the constructor argument. However, I can't do this since the Suite isn't a concrete Suite. I dynamically add TestCases to a TestSuite and now I need a TestRunner to run it so im able to get Junit report the test failures/success/errors as normal. (
Thanks.