{
super(klass, Collections.<Runner>emptyList());
if (getTestClass().getJavaClass().getAnnotation(Ignore.class) != null)
{
runners = Collections.unmodifiableList(Arrays.asList((Runner)new IgnoredClassRunner(klass)));
return;
}
List<Runner> localRunners = new LinkedList<>();