Commit 39886551 by wanggang

添加获取温度接口

parent c7872626
deviceMonitor @ a01e6c7c
Subproject commit a01e6c7c58318dfb50fa9daa24ea70aec023821f
......@@ -187,6 +187,12 @@
<artifactId>okhttp</artifactId>
<version>3.6.0</version>
</dependency>
<!-- -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<!-- jdom -->
<!--
<dependency>
......
......@@ -9,6 +9,7 @@ import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URLEncoder;
import java.nio.Buffer;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
......@@ -20,6 +21,8 @@ import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.sf.json.JSONObject;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.http.Consts;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
......@@ -803,6 +806,48 @@ public class BaseService {
return status;
}
/**
* 获取温度专用
* */
public JSONObject httppostHeaderContainerStatusReturnJson(String url)
throws ClientProtocolException, IOException {
HttpPost hp = new HttpPost(url);
//String appid = "mjitech2016" ;
//System.out.println("appid:"+appid);
String timestamp = System.currentTimeMillis()+"";
//String serverCer = "Mjitech2016";
String mjitech_machine_cert = DigestUtils.md5Hex("TWppdGVjaDIwMTY=" + "mjitech2016" + timestamp);
System.out.println("mjitech_machine_cert:"+mjitech_machine_cert);
System.out.println("timestamp:"+System.currentTimeMillis());
hp.setHeader("appid", "mjitech2016");
hp.setHeader("mjitech-machine-cert",mjitech_machine_cert);
hp.setHeader("timestamp",timestamp);
//String body = "{\"type\":\"ST\"}";
// hp.setEntity(new StringEntity(body));
hr = hc.execute(hp);
entity = hr.getEntity();
BufferedReader postresult = new BufferedReader(new InputStreamReader(entity.getContent(), "UTF-8"));
// 清空 strb
strB.delete(0, strB.length());
line = null;
while ((line = postresult.readLine()) != null) {
strB.append(line);
}
hp.abort();
json.clear();
try {
json = JSONObject.fromObject(strB.toString());
} catch (Exception e) {
json = new JSONObject();
System.out.println("返回不是json数据:" + strB.toString());
}
return json;
}
......
......@@ -525,4 +525,6 @@ public class Base64 {
}
}
}
......@@ -28,6 +28,12 @@
<class name="com.mjitech.qa.test.AddSkuToCart"></class>
</classes>
</test>
<test name="temperature">
<classes>
<class name="com.mjitech.qa.test.ContainerStatus"></class>
</classes>
</test>
<listeners>
<listener class-name="org.uncommons.reportng.HTMLReporter" />
<listener class-name="org.uncommons.reportng.JUnitXMLReporter" />
......
package com.mjitech.qa.test;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.apache.http.client.ClientProtocolException;
import org.testng.annotations.Test;
import com.mjitech.qa.service.BaseService;
import net.sf.json.JSONObject;
/**
* 获取温度状态接口
* @author Android
* @date 2019-04-29
* */
public class ContainerStatus {
BaseService service = new BaseService();
JSONObject json = JSONObject.fromObject("{}");
StringBuffer buffer = new StringBuffer();
File file = new File("./src/main/resources/temperature.txt") ;
FileWriter fw=null;
Date date = new Date();
@Test
public void containerStatusTest01(){
String url = "http://manager.mjitech.com/api/machines/48/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("48-万国城7号楼-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest02(){
String url = "http://manager.mjitech.com/api/machines/49/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("49-宏瑞达科技-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest03(){
String url = "http://manager.mjitech.com/api/machines/34/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("34-华贸商业街-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest04(){
String url = "http://manager.mjitech.com/api/machines/50/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("50-世通大厦B座-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest05(){
String url = "http://manager.mjitech.com/api/machines/36/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("36-凌宇大厦-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest06(){
String url = "http://manager.mjitech.com/api/machines/52/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("52-上海测试专用-华贸写字楼店-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest07(){
String url = "http://manager.mjitech.com/api/machines/40/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("40-电子城科技大厦-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest08(){
String url = "http://manager.mjitech.com/api/machines/41/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("41-默沙东大厦-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void containerStatusTest09(){
String url = "http://manager.mjitech.com/api/machines/45/container_status" ;
try {
json = service.httppostHeaderContainerStatusReturnJson(url);
System.out.println("json"+json);
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
format.setLenient(false);
format.format(date);
buffer.append("45-爱这城店-"+date+"--"+json+"\r\n");
fw = new FileWriter(file,true) ;
fw.write(buffer.toString());
fw.flush();
fw.close();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
......@@ -104,14 +104,14 @@ public class PickUpGoodsTest {
/**
* 单品测试
* * */
@Test(dependsOnMethods="login")
// @Test(dependsOnMethods="login")
public void pickUpGoodsTest01() {
String JSESSIONID = (String)map.get("JSESSIONID");
String cookiesValues = "mjitech_username='gangwang@mjitech.com'"+";ga=GA1.2.1640278628.1537349020;"+"JSESSIONID="+JSESSIONID ;
System.out.println("CookiesValues="+cookiesValues);
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("http://www.mjitech.com/web/pick_up_goods/34/1042")
.url("http://www.mjitech.com/web/pick_up_goods/52/86547")
.get()
// .addHeader("Cookie", "mjitech_username='gangwang@mjitech.com'; _ga=GA1.2.1640278628.1537349020; JSESSIONID=E0430372DC47BC880A93537AF0387924")
.addHeader("Cookie", cookiesValues)
......@@ -130,8 +130,8 @@ public class PickUpGoodsTest {
/**
* 多品测试
* */
//@Test
public void pickUpGoodsTest02() {
// @Test
public void pickUpGoodsTest03() {
String JSESSIONID = (String)map.get("JSESSIONID");
String cookiesValues = "mjitech_username='gangwang@mjitech.com'"+";ga=GA1.2.1640278628.1537349020;"+"JSESSIONID="+JSESSIONID ;
System.out.println("CookiesValues="+cookiesValues);
......@@ -164,4 +164,53 @@ public class PickUpGoodsTest {
}
}
/**
* 多品测试-按照货道号进行测试-华贸写字楼店
* */
@Test(dependsOnMethods="login")
public void pickUpGoodsTestXieZiLou() {
String JSESSIONID = (String)map.get("JSESSIONID");
String cookiesValues = "mjitech_username='gangwang@mjitech.com'"+";ga=GA1.2.1640278628.1537349020;"+"JSESSIONID="+JSESSIONID ;
System.out.println("CookiesValues="+cookiesValues);
OkHttpClient client = new OkHttpClient();
// List sku_id_list = getSkuList(34);86547
// int mt_new_sku_pass[] = {86509,86509,86509,86509,86509,86547,86547,86547,86547,86547};
// int mt_new_sku_pass[] = {86575,86575,86575,86575,86575,86575};
//运转标准策略 10 {86450,86551,86555,86514,86490,86489,86569,86486,86519,86497};
int mt_new_sku_pass[] = {86555};
//20
// int mt_new_sku_pass[] = {86593,86561,86555,86495,86490,86591,86635,86633,86528,86459};
//30
// int mt_new_sku_pass[] = {86537,86598,86454,86544,86614,86527,86450,86563,86464,86594};
//34
// int mt_new_sku_pass[] = {86501,86517,86599,86455};
for(int i=0;i<mt_new_sku_pass.length;i++) {
//int sku_id = (Integer)sku_id_list.get(i);
Request request = new Request.Builder()
.url("http://www.mjitech.com/web/pick_up_goods/52/"+mt_new_sku_pass[i]+"")
.get()
.addHeader("Cookie",cookiesValues)
.addHeader("cache-control", "no-cache")
.addHeader("Postman-Token", "ee590a55-6c93-413b-b60b-21b4a88f38fe")
.build();
try {
Response response = client.newCall(request).execute();
System.out.println("上海测试机器-华贸写字楼店-批量抓测结果-->"+mt_new_sku_pass+response);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
//休眠50秒
Thread.sleep(30000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
package com.mjitech.qa.test;
import java.util.Date;
import org.testng.log4testng.Logger;
public class Test1 {
......@@ -9,5 +11,7 @@ public class Test1 {
logger.debug("debug test");
logger.info("info test");
logger.error("error test....");
System.out.println(System.currentTimeMillis());
System.out.println(new Date());
}
}
......@@ -55,11 +55,11 @@ function toggleAllBoxes() {
<body>
<h2 align='center'>Default test</h2><table border='1' align="center">
<tr>
<td>Tests passed/Failed/Skipped:</td><td>2/0/0</td>
<td>Tests passed/Failed/Skipped:</td><td>9/0/0</td>
</tr><tr>
<td>Started on:</td><td>Tue Mar 12 17:23:19 CST 2019</td>
<td>Started on:</td><td>Thu May 09 16:11:41 CST 2019</td>
</tr>
<tr><td>Total time:</td><td>49 seconds (49288 ms)</td>
<tr><td>Total time:</td><td>25 seconds (25742 ms)</td>
</tr><tr>
<td>Included groups:</td><td></td>
</tr><tr>
......@@ -75,15 +75,50 @@ function toggleAllBoxes() {
<td><b>Instance</b></td>
</tr>
<tr>
<td title='com.mjitech.qa.test.PickUpGoodsTest.login()'><b>login</b><br>Test class: com.mjitech.qa.test.PickUpGoodsTest</td>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest01()'><b>containerStatusTest01</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>2</td>
<td>com.mjitech.qa.test.PickUpGoodsTest@313b2ea6</td></tr>
<td>1</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.PickUpGoodsTest.pickUpGoodsTest01()'><b>pickUpGoodsTest01</b><br>Test class: com.mjitech.qa.test.PickUpGoodsTest</td>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest02()'><b>containerStatusTest02</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>47</td>
<td>com.mjitech.qa.test.PickUpGoodsTest@313b2ea6</td></tr>
<td>0</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest03()'><b>containerStatusTest03</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>0</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest04()'><b>containerStatusTest04</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>0</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest05()'><b>containerStatusTest05</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>0</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest06()'><b>containerStatusTest06</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>10</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest07()'><b>containerStatusTest07</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>0</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest08()'><b>containerStatusTest08</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>0</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
<tr>
<td title='com.mjitech.qa.test.ContainerStatus.containerStatusTest09()'><b>containerStatusTest09</b><br>Test class: com.mjitech.qa.test.ContainerStatus</td>
<td></td>
<td>10</td>
<td>com.mjitech.qa.test.ContainerStatus@5f3a4b84</td></tr>
</table><p>
</body>
</html>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
<testsuite hostname="YLMF-1711181457" name="Default test" tests="2" failures="0" timestamp="12 Mar 2019 09:24:08 GMT" time="49.288" errors="0">
<testcase name="login" time="2.108" classname="com.mjitech.qa.test.PickUpGoodsTest"/>
<testcase name="pickUpGoodsTest01" time="47.156" classname="com.mjitech.qa.test.PickUpGoodsTest"/>
<testsuite hostname="YLMF-1711181457" name="Default test" tests="9" failures="0" timestamp="9 May 2019 08:12:07 GMT" time="25.742" errors="0">
<testcase name="containerStatusTest01" time="1.629" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest02" time="0.618" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest03" time="0.619" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest04" time="0.675" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest05" time="0.739" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest06" time="10.093" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest07" time="0.672" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest08" time="0.589" classname="com.mjitech.qa.test.ContainerStatus"/>
<testcase name="containerStatusTest09" time="10.051" classname="com.mjitech.qa.test.ContainerStatus"/>
</testsuite> <!-- Default test -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>TestNG Report</title><style type="text/css">table {margin-bottom:10px;border-collapse:collapse;empty-cells:show}th,td {border:1px solid #009;padding:.25em .5em}th {vertical-align:bottom}td {vertical-align:top}table a {font-weight:bold}.stripe td {background-color: #E6EBF9}.num {text-align:right}.passedodd td {background-color: #3F3}.passedeven td {background-color: #0A0}.skippedodd td {background-color: #DDD}.skippedeven td {background-color: #CCC}.failedodd td,.attn {background-color: #F33}.failedeven td,.stripe .attn {background-color: #D00}.stacktrace {white-space:pre;font-family:monospace}.totop {font-size:85%;text-align:center;border-bottom:2px solid #000}</style></head><body><table><tr><th>Test</th><th># Passed</th><th># Skipped</th><th># Failed</th><th>Time (ms)</th><th>Included Groups</th><th>Excluded Groups</th></tr><tr><th colspan="7">Default suite</th></tr><tr><td><a href="#t0">Default test</a></td><td class="num">2</td><td class="num">0</td><td class="num">0</td><td class="num">49,288</td><td></td><td></td></tr></table><table><thead><tr><th>Class</th><th>Method</th><th>Start</th><th>Time (ms)</th></tr></thead><tbody><tr><th colspan="4">Default suite</th></tr></tbody><tbody id="t0"><tr><th colspan="4">Default test &#8212; passed</th></tr><tr class="passedeven"><td rowspan="2">com.mjitech.qa.test.PickUpGoodsTest</td><td><a href="#m0">login</a></td><td rowspan="1">1552382599335</td><td rowspan="1">2108</td></tr><tr class="passedeven"><td><a href="#m1">pickUpGoodsTest01</a></td><td rowspan="1">1552382601446</td><td rowspan="1">47156</td></tr></tbody></table><h2>Default test</h2><h3 id="m0">com.mjitech.qa.test.PickUpGoodsTest#login</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m1">com.mjitech.qa.test.PickUpGoodsTest#pickUpGoodsTest01</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p></body></html>
\ No newline at end of file
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>TestNG Report</title><style type="text/css">table {margin-bottom:10px;border-collapse:collapse;empty-cells:show}th,td {border:1px solid #009;padding:.25em .5em}th {vertical-align:bottom}td {vertical-align:top}table a {font-weight:bold}.stripe td {background-color: #E6EBF9}.num {text-align:right}.passedodd td {background-color: #3F3}.passedeven td {background-color: #0A0}.skippedodd td {background-color: #DDD}.skippedeven td {background-color: #CCC}.failedodd td,.attn {background-color: #F33}.failedeven td,.stripe .attn {background-color: #D00}.stacktrace {white-space:pre;font-family:monospace}.totop {font-size:85%;text-align:center;border-bottom:2px solid #000}</style></head><body><table><tr><th>Test</th><th># Passed</th><th># Skipped</th><th># Failed</th><th>Time (ms)</th><th>Included Groups</th><th>Excluded Groups</th></tr><tr><th colspan="7">Default suite</th></tr><tr><td><a href="#t0">Default test</a></td><td class="num">9</td><td class="num">0</td><td class="num">0</td><td class="num">25,742</td><td></td><td></td></tr></table><table><thead><tr><th>Class</th><th>Method</th><th>Start</th><th>Time (ms)</th></tr></thead><tbody><tr><th colspan="4">Default suite</th></tr></tbody><tbody id="t0"><tr><th colspan="4">Default test &#8212; passed</th></tr><tr class="passedeven"><td rowspan="9">com.mjitech.qa.test.ContainerStatus</td><td><a href="#m0">containerStatusTest01</a></td><td rowspan="1">1557389501936</td><td rowspan="1">1629</td></tr><tr class="passedeven"><td><a href="#m1">containerStatusTest02</a></td><td rowspan="1">1557389503570</td><td rowspan="1">618</td></tr><tr class="passedeven"><td><a href="#m2">containerStatusTest03</a></td><td rowspan="1">1557389504192</td><td rowspan="1">619</td></tr><tr class="passedeven"><td><a href="#m3">containerStatusTest04</a></td><td rowspan="1">1557389504814</td><td rowspan="1">675</td></tr><tr class="passedeven"><td><a href="#m4">containerStatusTest05</a></td><td rowspan="1">1557389505493</td><td rowspan="1">739</td></tr><tr class="passedeven"><td><a href="#m5">containerStatusTest06</a></td><td rowspan="1">1557389506237</td><td rowspan="1">10093</td></tr><tr class="passedeven"><td><a href="#m6">containerStatusTest07</a></td><td rowspan="1">1557389516332</td><td rowspan="1">672</td></tr><tr class="passedeven"><td><a href="#m7">containerStatusTest08</a></td><td rowspan="1">1557389517010</td><td rowspan="1">589</td></tr><tr class="passedeven"><td><a href="#m8">containerStatusTest09</a></td><td rowspan="1">1557389517604</td><td rowspan="1">10051</td></tr></tbody></table><h2>Default test</h2><h3 id="m0">com.mjitech.qa.test.ContainerStatus#containerStatusTest01</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m1">com.mjitech.qa.test.ContainerStatus#containerStatusTest02</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m2">com.mjitech.qa.test.ContainerStatus#containerStatusTest03</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m3">com.mjitech.qa.test.ContainerStatus#containerStatusTest04</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m4">com.mjitech.qa.test.ContainerStatus#containerStatusTest05</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m5">com.mjitech.qa.test.ContainerStatus#containerStatusTest06</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m6">com.mjitech.qa.test.ContainerStatus#containerStatusTest07</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m7">com.mjitech.qa.test.ContainerStatus#containerStatusTest08</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p><h3 id="m8">com.mjitech.qa.test.ContainerStatus#containerStatusTest09</h3><table class="result"></table><p class="totop"><a href="#summary">back to summary</a></p></body></html>
\ No newline at end of file
......@@ -4,18 +4,46 @@
<th>Method name</th>
<th>Groups</th>
</tr><tr>
<td>com.mjitech.qa.test.PickUpGoodsTest</td>
<td>com.mjitech.qa.test.ContainerStatus</td>
<td>&nbsp;</td><td>&nbsp;</td></tr>
<tr>
<td align='center' colspan='3'>@Test</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>pickUpGoodsTest01</td>
<td>containerStatusTest02</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>login</td>
<td>containerStatusTest01</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>containerStatusTest09</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>containerStatusTest08</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>containerStatusTest07</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>containerStatusTest06</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>containerStatusTest05</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>containerStatusTest04</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>containerStatusTest03</td>
<td>&nbsp;</td></tr>
<tr>
<td align='center' colspan='3'>@BeforeClass</td>
......
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>Default suite</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<table border="1">
<tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
<tr bgcolor="616382"> <td>19/03/12 17:23:19</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PickUpGoodsTest.login()[pri:0, instance:com.mjitech.qa.test.PickUpGoodsTest@313b2ea6]">login</td>
<td>main@336371513</td> <td></td> </tr>
<tr bgcolor="616382"> <td>19/03/12 17:23:21</td> <td>2110</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PickUpGoodsTest.pickUpGoodsTest01()[pri:0, instance:com.mjitech.qa.test.PickUpGoodsTest@313b2ea6]">pickUpGoodsTest01</td>
<td>main@336371513</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:41</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest01()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest01</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:43</td> <td>1633</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest02()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest02</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:44</td> <td>2255</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest03()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest03</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:44</td> <td>2877</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest04()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest04</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:45</td> <td>3557</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest05()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest05</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:46</td> <td>4300</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest06()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest06</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:56</td> <td>14395</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest07()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest07</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:57</td> <td>15075</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest08()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest08</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:57</td> <td>15668</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest09()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest09</td>
<td>main@775931202</td> <td></td> </tr>
</table>
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>Default suite</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<table border="1">
<tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
<tr bgcolor="616382"> <td>19/03/12 17:23:19</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PickUpGoodsTest.login()[pri:0, instance:com.mjitech.qa.test.PickUpGoodsTest@313b2ea6]">login</td>
<td>main@336371513</td> <td></td> </tr>
<tr bgcolor="616382"> <td>19/03/12 17:23:21</td> <td>2110</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PickUpGoodsTest.pickUpGoodsTest01()[pri:0, instance:com.mjitech.qa.test.PickUpGoodsTest@313b2ea6]">pickUpGoodsTest01</td>
<td>main@336371513</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:41</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest01()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest01</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:43</td> <td>1633</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest02()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest02</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:44</td> <td>2255</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest03()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest03</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:44</td> <td>2877</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest04()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest04</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:45</td> <td>3557</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest05()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest05</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:46</td> <td>4300</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest06()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest06</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:56</td> <td>14395</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest07()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest07</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:57</td> <td>15075</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest08()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest08</td>
<td>main@775931202</td> <td></td> </tr>
<tr bgcolor="69b199"> <td>19/05/09 16:11:57</td> <td>15668</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="ContainerStatus.containerStatusTest09()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]">containerStatusTest09</td>
<td>main@775931202</td> <td></td> </tr>
</table>
<html><head><title>testng.xml for Default suite</title></head><body><tt>&lt;?xml&nbsp;version="1.0"&nbsp;encoding="UTF-8"?&gt;<br/>&lt;!DOCTYPE&nbsp;suite&nbsp;SYSTEM&nbsp;"http://testng.org/testng-1.0.dtd"&gt;<br/>&lt;suite&nbsp;name="Default&nbsp;suite"&gt;<br/>&nbsp;&nbsp;&lt;test&nbsp;verbose="2"&nbsp;name="Default&nbsp;test"&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;classes&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;class&nbsp;name="com.mjitech.qa.test.PickUpGoodsTest"/&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/classes&gt;<br/>&nbsp;&nbsp;&lt;/test&gt;&nbsp;&lt;!--&nbsp;Default&nbsp;test&nbsp;--&gt;<br/>&lt;/suite&gt;&nbsp;&lt;!--&nbsp;Default&nbsp;suite&nbsp;--&gt;<br/></tt></body></html>
\ No newline at end of file
<html><head><title>testng.xml for Default suite</title></head><body><tt>&lt;?xml&nbsp;version="1.0"&nbsp;encoding="UTF-8"?&gt;<br/>&lt;!DOCTYPE&nbsp;suite&nbsp;SYSTEM&nbsp;"http://testng.org/testng-1.0.dtd"&gt;<br/>&lt;suite&nbsp;name="Default&nbsp;suite"&gt;<br/>&nbsp;&nbsp;&lt;test&nbsp;verbose="2"&nbsp;name="Default&nbsp;test"&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;classes&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;class&nbsp;name="com.mjitech.qa.test.ContainerStatus"/&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/classes&gt;<br/>&nbsp;&nbsp;&lt;/test&gt;&nbsp;&lt;!--&nbsp;Default&nbsp;test&nbsp;--&gt;<br/>&lt;/suite&gt;&nbsp;&lt;!--&nbsp;Default&nbsp;suite&nbsp;--&gt;<br/></tt></body></html>
\ No newline at end of file
......
......@@ -10,7 +10,7 @@
<tr valign='top'>
<td>1 test</td>
<td><a target='mainFrame' href='classes.html'>1 class</a></td>
<td>2 methods:<br/>
<td>9 methods:<br/>
&nbsp;&nbsp;<a target='mainFrame' href='methods.html'>chronological</a><br/>
&nbsp;&nbsp;<a target='mainFrame' href='methods-alphabetical.html'>alphabetical</a><br/>
&nbsp;&nbsp;<a target='mainFrame' href='methods-not-run.html'>not run (0)</a></td>
......@@ -22,7 +22,7 @@
</tr></table>
<table width='100%' class='test-passed'>
<tr><td>
<table style='width: 100%'><tr><td valign='top'>Default test (2/0/0)</td><td valign='top' align='right'>
<table style='width: 100%'><tr><td valign='top'>Default test (9/0/0)</td><td valign='top' align='right'>
<a href='Default test.html' target='mainFrame'>Results</a>
</td></tr></table>
</td></tr><p/>
......
......@@ -4,6 +4,6 @@
</head><body>
<h2><p align='center'>Test results</p></h2>
<table border='1' width='100%' class='main-page'><tr><th>Suite</th><th>Passed</th><th>Failed</th><th>Skipped</th><th>testng.xml</th></tr>
<tr align='center' class='invocation-passed'><td><em>Total</em></td><td><em>2</em></td><td><em>0</em></td><td><em>0</em></td><td>&nbsp;</td></tr>
<tr align='center' class='invocation-passed'><td><em>Total</em></td><td><em>9</em></td><td><em>0</em></td><td><em>0</em></td><td>&nbsp;</td></tr>
<tr align='center' class='invocation-passed'><td><a href='Default suite/index.html'>Default suite</a></td>
<td>2</td><td>0</td><td>0</td><td><a href='Default suite/testng.xml.html'>Link</a></td></tr></table></body></html>
<td>9</td><td>0</td><td>0</td><td><a href='Default suite/testng.xml.html'>Link</a></td></tr></table></body></html>
<?xml version="1.0" encoding="UTF-8"?>
<testng-results skipped="0" failed="0" total="2" passed="2">
<testng-results skipped="0" failed="0" total="9" passed="9">
<reporter-output>
</reporter-output>
<suite name="Default suite" duration-ms="49288" started-at="2019-03-12T09:23:19Z" finished-at="2019-03-12T09:24:08Z">
<suite name="Default suite" duration-ms="25742" started-at="2019-05-09T08:11:41Z" finished-at="2019-05-09T08:12:07Z">
<groups>
</groups>
<test name="Default test" duration-ms="49288" started-at="2019-03-12T09:23:19Z" finished-at="2019-03-12T09:24:08Z">
<class name="com.mjitech.qa.test.PickUpGoodsTest">
<test-method status="PASS" signature="login()[pri:0, instance:com.mjitech.qa.test.PickUpGoodsTest@313b2ea6]" name="login" duration-ms="2108" started-at="2019-03-12T17:23:19Z" finished-at="2019-03-12T17:23:21Z">
<test name="Default test" duration-ms="25742" started-at="2019-05-09T08:11:41Z" finished-at="2019-05-09T08:12:07Z">
<class name="com.mjitech.qa.test.ContainerStatus">
<test-method status="PASS" signature="containerStatusTest01()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest01" duration-ms="1629" started-at="2019-05-09T16:11:41Z" finished-at="2019-05-09T16:11:43Z">
<reporter-output>
</reporter-output>
</test-method> <!-- login -->
<test-method status="PASS" signature="pickUpGoodsTest01()[pri:0, instance:com.mjitech.qa.test.PickUpGoodsTest@313b2ea6]" name="pickUpGoodsTest01" duration-ms="47156" started-at="2019-03-12T17:23:21Z" depends-on-methods="com.mjitech.qa.test.PickUpGoodsTest.login" finished-at="2019-03-12T17:24:08Z">
</test-method> <!-- containerStatusTest01 -->
<test-method status="PASS" signature="containerStatusTest02()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest02" duration-ms="618" started-at="2019-05-09T16:11:43Z" finished-at="2019-05-09T16:11:44Z">
<reporter-output>
</reporter-output>
</test-method> <!-- pickUpGoodsTest01 -->
</class> <!-- com.mjitech.qa.test.PickUpGoodsTest -->
</test-method> <!-- containerStatusTest02 -->
<test-method status="PASS" signature="containerStatusTest03()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest03" duration-ms="619" started-at="2019-05-09T16:11:44Z" finished-at="2019-05-09T16:11:44Z">
<reporter-output>
</reporter-output>
</test-method> <!-- containerStatusTest03 -->
<test-method status="PASS" signature="containerStatusTest04()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest04" duration-ms="675" started-at="2019-05-09T16:11:44Z" finished-at="2019-05-09T16:11:45Z">
<reporter-output>
</reporter-output>
</test-method> <!-- containerStatusTest04 -->
<test-method status="PASS" signature="containerStatusTest05()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest05" duration-ms="739" started-at="2019-05-09T16:11:45Z" finished-at="2019-05-09T16:11:46Z">
<reporter-output>
</reporter-output>
</test-method> <!-- containerStatusTest05 -->
<test-method status="PASS" signature="containerStatusTest06()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest06" duration-ms="10093" started-at="2019-05-09T16:11:46Z" finished-at="2019-05-09T16:11:56Z">
<reporter-output>
</reporter-output>
</test-method> <!-- containerStatusTest06 -->
<test-method status="PASS" signature="containerStatusTest07()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest07" duration-ms="672" started-at="2019-05-09T16:11:56Z" finished-at="2019-05-09T16:11:57Z">
<reporter-output>
</reporter-output>
</test-method> <!-- containerStatusTest07 -->
<test-method status="PASS" signature="containerStatusTest08()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest08" duration-ms="589" started-at="2019-05-09T16:11:57Z" finished-at="2019-05-09T16:11:57Z">
<reporter-output>
</reporter-output>
</test-method> <!-- containerStatusTest08 -->
<test-method status="PASS" signature="containerStatusTest09()[pri:0, instance:com.mjitech.qa.test.ContainerStatus@5f3a4b84]" name="containerStatusTest09" duration-ms="10051" started-at="2019-05-09T16:11:57Z" finished-at="2019-05-09T16:12:07Z">
<reporter-output>
</reporter-output>
</test-method> <!-- containerStatusTest09 -->
</class> <!-- com.mjitech.qa.test.ContainerStatus -->
</test> <!-- Default test -->
</suite> <!-- Default suite -->
</testng-results>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment