Hi, I'm currently working on getting junit and junireport to take some java files, convert it to xml and then display error messages / success rates etc in html which is one of the features of junitreport. I created a simple Math.java class which contains:
package test;
public class Math {
public int add(int a, int b) {
return a + b;
}
public int multiply(int...