【seagull1985】TestLink API的调用
public class TestLinkBaseApi{/**
* @param args
*/
private final static String TESTLINK_URL = "http://xx.xxx.xx.xx:80/testlink/lib/api/xmlrpc/v1/xmlrpc.php";
protected final static String TESTLINK_DEVKEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; //用户登录后在管理界面去查询此KEY
protected final static Integer PLATFORMID = 0;
protected final static String PLATFORMNAME = null;
protected static TestLinkAPI api= iniTestlinkApi();
private static TestLinkAPI iniTestlinkApi() {
URL testlinkURL = null;
try {
testlinkURL = new URL(TESTLINK_URL);
} catch ( MalformedURLException mue ) {
mue.printStackTrace( System.err );
System.exit(-1);
}
return new TestLinkAPI(testlinkURL, TESTLINK_DEVKEY);
}
}
关键是,别忘记了导入API的jar包。。。。
页:
[1]