TA的每日心情 | 奋斗 2018-8-27 15:56 |
---|
签到天数: 322 天 连续签到: 1 天 [LV.8]测试军长
|
- 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包。。。。
|
|