import org.junit.runner.notification.RunNotifier;\r
import org.junit.runners.ParentRunner;\r
\r
-public abstract class RuntimeSTSRunner extends ParentRunner<Runner> {\r
+public abstract class RuntimeSTSRunner<T extends Runner> extends ParentRunner<T> {\r
\r
public RuntimeSTSRunner(Class<?> testClass) throws Exception {\r
super(testClass);\r
\r
public abstract void deinitialize() throws Exception;\r
\r
- @Override\r
- protected List<Runner> getChildren() {\r
- System.out.println("getting children");\r
- return RuntimeTestCollector.collectTests();\r
- }\r
-\r
@Override\r
protected Description describeChild(Runner child) {\r
return child.getDescription();\r