51Testing软件测试论坛

标题: 【seagull1985】TestLink API的调用 [打印本页]

作者: seagull1985    时间: 2016-8-4 17:14
标题: 【seagull1985】TestLink API的调用
  1. public class TestLinkBaseApi{

  2.         /**
  3.          * @param args
  4.          */
  5.         private final static String TESTLINK_URL = "http://xx.xxx.xx.xx:80/testlink/lib/api/xmlrpc/v1/xmlrpc.php";
  6.         protected final static String TESTLINK_DEVKEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";        //用户登录后在管理界面去查询此KEY
  7.         protected final static Integer PLATFORMID = 0;
  8.         protected final static String PLATFORMNAME = null;
  9.         protected static TestLinkAPI api= iniTestlinkApi();

  10.         private static TestLinkAPI iniTestlinkApi() {
  11.             URL testlinkURL = null;       
  12.             try     {
  13.                     testlinkURL = new URL(TESTLINK_URL);
  14.             } catch ( MalformedURLException mue )   {
  15.                     mue.printStackTrace( System.err );
  16.                     System.exit(-1);
  17.             }
  18.             return new TestLinkAPI(testlinkURL, TESTLINK_DEVKEY);
  19.         }

  20. }
复制代码


关键是,别忘记了导入API的jar包。。。。





欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2