Project

General

Profile

Feature #1950

Updated by Udo Offermann almost 8 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 change is the filter in TestExecutor.java 
 TestExecutor  
 <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 

Back