Examples of IAgentOutput


Examples of org.jacoco.agent.rt.internal.output.IAgentOutput

  public void testShutdownWithException() throws Exception {
    final Exception expected = new Exception();
    Agent agent = new Agent(options, this) {
      @Override
      IAgentOutput createAgentOutput() {
        return new IAgentOutput() {
          public void startup(AgentOptions options, RuntimeData data) {
          }

          public void shutdown() throws Exception {
            throw expected;
View Full Code Here

Examples of org.jacoco.agent.rt.internal.output.IAgentOutput

  public void testDump() throws Exception {
    final boolean[] called = new boolean[1];
    Agent agent = new Agent(options, this) {
      @Override
      IAgentOutput createAgentOutput() {
        return new IAgentOutput() {
          public void startup(AgentOptions options, RuntimeData data) {
          }

          public void shutdown() throws Exception {
          }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.