public void transform(IDataProviderAnnotation arg0, Method method) { boolean parallel = false; if (getBundle().containsKey(method.getName() + ".parallel")) { parallel = getBundle().getBoolean(method.getName() + ".parallel"); } else { parallel = getBundle().getBoolean("global.datadriven.parallel", false); } arg0.setParallel(parallel); }
@Override public void transform(IDataProviderAnnotation annotation, Method method) { xformProvider.add("method: " + method.getName()); }
@Override public void transform(IDataProviderAnnotation iDataProviderAnnotation, Method method) { //To change body of implemented methods use File | Settings | File Templates. }
@Override public void transform(IDataProviderAnnotation annotation, Method method) { annotation.setParallel(usesParallelDataProvider(method)); }