final Map<String, Collection<URL>> featureUrls = Features.createFeatureMap(
configuration.get().getTempDir(), configuration.get().getFeatureHome(), javaClass, loader);
if (featureUrls.isEmpty()
|| !LibraryContainer.class.isInstance(applicationArchive)) {
final RunWith runWith = testClass.getAnnotation(RunWith.class);
if (runWith == null || (!ArquillianCucumber.class.equals(runWith.value()) && !CukeSpace.class.equals(runWith.value()))) {
// not a cucumber test so skip enrichment
return;
} else {
// else let enrich it to avoid type not found error
Logger.getLogger(CucumberArchiveProcessor.class.getName()).info("No feature found for " + javaClass.getName());