Package org.jacoco.core.runtime

Examples of org.jacoco.core.runtime.AgentOptions


* 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;
  }
View Full Code Here

TOP

Related Classes of org.jacoco.core.runtime.AgentOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.