更新注释
This commit is contained in:
parent
b258699a44
commit
2f6d683871
26
pom.xml
26
pom.xml
|
@ -2,8 +2,8 @@
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>LuckyFrame</groupId>
|
<groupId>LuckyFrameClient</groupId>
|
||||||
<artifactId>LuckyFrame</artifactId>
|
<artifactId>LuckyFrameClient</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
@ -232,11 +232,6 @@
|
||||||
<artifactId>selenium-remote-driver</artifactId>
|
<artifactId>selenium-remote-driver</artifactId>
|
||||||
<version>3.3.0</version>
|
<version>3.3.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>io.appium</groupId>
|
|
||||||
<artifactId>java-client</artifactId>
|
|
||||||
<version>4.1.2</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>xml-apis</groupId>
|
<groupId>xml-apis</groupId>
|
||||||
<artifactId>xml-apis</artifactId>
|
<artifactId>xml-apis</artifactId>
|
||||||
|
@ -263,16 +258,11 @@
|
||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>2.5.2</version>
|
<version>2.5.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- hessian -->
|
<dependency>
|
||||||
<!-- <dependency>
|
<groupId>io.appium</groupId>
|
||||||
<groupId>com.caucho</groupId>
|
<artifactId>java-client</artifactId>
|
||||||
<artifactId>hessian</artifactId>
|
<version>6.0.0-BETA2</version>
|
||||||
<version>3.1.5</version>
|
</dependency>
|
||||||
</dependency> -->
|
|
||||||
<!--由于Oracle JDBC驱动包是需要Oracle官方授权才能被下载,如果原maven私库中无此包,请手动添加至私库再在maven中操作update
|
|
||||||
project -->
|
|
||||||
<!--如果您不需要用到此包,可以注释掉 -->
|
|
||||||
<!-- <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId>
|
|
||||||
<version>12.1.0.1-atlassian-hosted</version> </dependency> -->
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -27,10 +27,9 @@ import luckyclient.publicclass.InvokeMethod;
|
||||||
public class ApiTestCaseDebug{
|
public class ApiTestCaseDebug{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param 项目名
|
|
||||||
* @param 用例编号
|
|
||||||
* @param 用例版本号
|
|
||||||
* 用于在本地做单条用例调试
|
* 用于在本地做单条用例调试
|
||||||
|
* @param projectname
|
||||||
|
* @param testCaseExternalId
|
||||||
*/
|
*/
|
||||||
public static void oneCaseDebug(String projectname,String testCaseExternalId){
|
public static void oneCaseDebug(String projectname,String testCaseExternalId){
|
||||||
Map<String,String> variable = new HashMap<String,String>(0);
|
Map<String,String> variable = new HashMap<String,String>(0);
|
||||||
|
@ -156,10 +155,9 @@ public class ApiTestCaseDebug{
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param 项目名
|
|
||||||
* @param 用例编号
|
|
||||||
* @param 用例版本号
|
|
||||||
* 用于在本地做多条用例串行调试
|
* 用于在本地做多条用例串行调试
|
||||||
|
* @param projectname
|
||||||
|
* @param addtestcase
|
||||||
*/
|
*/
|
||||||
public static void moreCaseDebug(String projectname,Map<String,Integer> addtestcase){
|
public static void moreCaseDebug(String projectname,Map<String,Integer> addtestcase){
|
||||||
System.out.println(addtestcase.size());
|
System.out.println(addtestcase.size());
|
||||||
|
|
Loading…
Reference in New Issue