Collections.addAll(featureUrls, annotation.features());
}
}
{ // cucumber-junit API
final CucumberOptions annotation = javaClass.getAnnotation(CucumberOptions.class);
if (annotation != null && annotation.features() != null) {
Collections.addAll(featureUrls, annotation.features());
}
}
return featureUrls;