Skip to content

Commit

Permalink
JENKINS-41802 alias for getTestUrl/getTestURL
Browse files Browse the repository at this point in the history
  • Loading branch information
James Dumay committed Feb 7, 2017
1 parent 70d3b29 commit 05bc69c
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -73,6 +73,11 @@ public String getDisplayName() {
/** Fully qualified URL to the test details page for a given test result */
public abstract String getTestUrl(hudson.tasks.test.TestResult result);

/** Fully qualified URL to the test details page for a given test result. Alternate name for consistency. See JENKINS-41802. */
public String getTestURL(hudson.tasks.test.TestResult result) {
return getTestUrl(result);
}

static class DisplayURLProviderImpl extends ClassicDisplayURLProvider {

public static final DisplayURLProvider INSTANCE = new DisplayURLProviderImpl();
Expand Down

0 comments on commit 05bc69c

Please sign in to comment.