提交 016baea4 编写于 作者: K Kohsuke Kawaguchi

Opening it up to plugins.

See https://groups.google.com/forum/#!topic/jenkinsci-dev/CPab12692Qs
and https://github.com/jenkinsci/jenkins/pull/873 for the context.

This change reimplements nullin's original commit as it contains too
many noise changes.
上级 f83d4550
......@@ -51,7 +51,7 @@ import static java.util.Collections.singletonList;
*
* @author Kohsuke Kawaguchi
*/
public final class CaseResult extends TestResult implements Comparable<CaseResult> {
public class CaseResult extends TestResult implements Comparable<CaseResult> {
private static final Logger LOGGER = Logger.getLogger(CaseResult.class.getName());
private final float duration;
/**
......@@ -202,7 +202,7 @@ public final class CaseResult extends TestResult implements Comparable<CaseResul
/**
* Used to create a fake failure, when Hudson fails to load data from XML files.
*/
CaseResult(SuiteResult parent, String testName, String errorStackTrace) {
public CaseResult(SuiteResult parent, String testName, String errorStackTrace) {
this.className = parent == null ? "unnamed" : parent.getName();
this.testName = testName;
this.errorStackTrace = errorStackTrace;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册