更新注释
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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>LuckyFrame</groupId>
|
||||
<artifactId>LuckyFrame</artifactId>
|
||||
<groupId>LuckyFrameClient</groupId>
|
||||
<artifactId>LuckyFrameClient</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
|
@ -232,11 +232,6 @@
|
|||
<artifactId>selenium-remote-driver</artifactId>
|
||||
<version>3.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.appium</groupId>
|
||||
<artifactId>java-client</artifactId>
|
||||
<version>4.1.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis</artifactId>
|
||||
|
@ -263,16 +258,11 @@
|
|||
<artifactId>jackson-databind</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</dependency>
|
||||
<!-- hessian -->
|
||||
<!-- <dependency>
|
||||
<groupId>com.caucho</groupId>
|
||||
<artifactId>hessian</artifactId>
|
||||
<version>3.1.5</version>
|
||||
</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> -->
|
||||
<dependency>
|
||||
<groupId>io.appium</groupId>
|
||||
<artifactId>java-client</artifactId>
|
||||
<version>6.0.0-BETA2</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
|
@ -27,10 +27,9 @@ import luckyclient.publicclass.InvokeMethod;
|
|||
public class ApiTestCaseDebug{
|
||||
|
||||
/**
|
||||
* @param 项目名
|
||||
* @param 用例编号
|
||||
* @param 用例版本号
|
||||
* 用于在本地做单条用例调试
|
||||
* @param projectname
|
||||
* @param testCaseExternalId
|
||||
*/
|
||||
public static void oneCaseDebug(String projectname,String testCaseExternalId){
|
||||
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){
|
||||
System.out.println(addtestcase.size());
|
||||
|
|
Loading…
Reference in New Issue