Project

General

Profile

Feature #1950

Updated by Henning Blohm over 6 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 look at is the filter in TestExecutor.java 
 <pre> 
   r = r.filterWith(new Filter() { 
	 @Override 
	 public boolean shouldRun(Description d) { 
		 return description.equals(d) || children.containsKey(d); 
	 } 
   ... 					
 </pre> 

 Furthermore the JSONHelper must be extended - see attached patch 

 *NOTE*: Parameterized tests have been fixed with #1971. Aggregation testing needs to be verified and test coverage supplied 

Back