Package org.sonar.api.batch.sensor.test.internal

Examples of org.sonar.api.batch.sensor.test.internal.DefaultTestCaseExecution.durationInMs()


    value.putUTF(((DefaultInputFile) t.testFile()).moduleKey());
    value.putUTF(((DefaultInputFile) t.testFile()).relativePath());
    value.putUTF(t.name());
    putUTFOrNull(value, t.message());
    putUTFOrNull(value, t.stackTrace());
    Long durationInMs = t.durationInMs();
    value.put(durationInMs != null ? durationInMs.longValue() : -1);
    value.put(t.type().ordinal());
    value.put(t.status().ordinal());
  }
View Full Code Here


      .name(name)
      .status(status)
      .message(message)
      .stackTrace(stack);
    if (duration != -1) {
      testCaseExecution.durationInMs(duration);
    }
    return testCaseExecution;
  }
}
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.