51Testing软件测试论坛
标题:
【seagull1985】TestLink API的调用
[打印本页]
作者:
seagull1985
时间:
2016-8-4 17:14
标题:
【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包。。。。
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2