Feature #1950
Updated by Udo Offermann over 9 years ago
Z2Unit should support "Parameterized-tests":https://github.com/junit-team/junit4/wiki/Parameterized-tests and "Aggregating-tests-in-suites":https://github.com/junit-team/junit4/wiki/Aggregating-tests-in-suites
One thing to change is TestExecutor
<pre>
r = r.filterWith(new Filter() {
@Override
public boolean shouldRun(Description d) {
return description.equals(d) || children.containsKey(d);
}
...
</pre>
Furthermore Udo will add the JSONHelper must be extended - see attached changes he already tried as patch
