key1=value1,key2=value2,key3=value3
3637383940414243444546
* Utility class for JaCoCo code-coverage. */ public class Jacoco { public static String newJvmarg(MxTest mxtest) { AgentOptions options = new AgentOptions(); options.setDestfile(mxtest.getJaCoCoData().getAbsolutePath()); // TODO reflective attributes here String vmarg = options.getVMArgument(getAgentFile(mxtest.getProject())); return vmarg; }