Skip to content

Instantly share code, notes, and snippets.

@kinow
Created March 8, 2012 20:35
Show Gist options
  • Save kinow/2003274 to your computer and use it in GitHub Desktop.
Save kinow/2003274 to your computer and use it in GitHub Desktop.
package br.eti.kinoshita.testlinkjavaapi;
import java.net.URL;
import br.eti.kinoshita.testlinkjavaapi.model.Execution;
public class T {
public static void main(String[] args) throws Exception {
TestLinkAPI api = new TestLinkAPI(new URL("http://localhost/testlink-1.9.3/lib/api/xmlrpc.php"), "123");
Execution execution = api.getLastExecutionResult(
2,
4,
null);
System.out.println(execution);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment