Re: How to get the full test result url in Java

2014-09-04 Thread Manuel de la Peña
Hello everybody! I've replicated jUnit plugin behavior to access that URL: AggregatedTestResultAction testResultAction = build.getAction( AggregatedTestResultAction.class); List childReports = testResultAction.getChildReports(); for (ChildReport report : childReports) { TestResult result

Re: How to get the full test result url in Java

2014-08-29 Thread Manuel de la Peña
Thanks Daniel I'll take a look on it ;) But, although using that new API, how could I get the full URL? Thanks! El viernes, 29 de agosto de 2014 13:30:10 UTC+2, Daniel Beck escribió: > > Just FYI build.getAggregatedTestResultAction had its signature changed in > 1.577. > > > http://javadoc.jen

Re: How to get the full test result url in Java

2014-08-29 Thread Daniel Beck
Just FYI build.getAggregatedTestResultAction had its signature changed in 1.577. http://javadoc.jenkins-ci.org/hudson/model/AbstractBuild.html#getAggregatedTestResultAction%28%29 On 29.08.2014, at 13:22, Manuel de la Peña wrote: > Hi community > > I've debugging jenkins code to know how the fu

How to get the full test result url in Java

2014-08-29 Thread Manuel de la Peña
Hi community I've debugging jenkins code to know how the full jUnit test result url is generated. That url can be from a matrix project with several axis, or a maven project, or whatever. Is there an easy way to compound that URL once I get the testResult list? AggregatedTestResultAction aggr