Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0.3
-
None
-
JDK 1.5.0_07, Linux (Fedora Core 5)
Description
The Project.getBuildResults() method returns an empty list. The unit test is shown here:
@Test
public void testGetProjectBuildResults() throws XmlRpcException, IOException {
String url = "http://localhost:8000/continuum";
ProjectsReader pr = new ProjectsReader( new URL( url ) );
Project[] projects = projects = pr.readProjects();
//
// Note: All the projects on the localhost server have builds
//
for ( Project project : projects)
}