Commit e8f51f2e by donghu

add cases

1 parent 1fe3b910
This diff could not be displayed because it is too large.
[2021-09-06 13:42:22.145] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
at java.net.SocketInputStream.read(SocketInputStream.java:171)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)
at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePutJson(HttpToolKit.java:340)
at com.fangdd.qa.testng.TestngSuiteListener.reportTestSuiteStatistic(TestngSuiteListener.java:90)
at com.fangdd.qa.testng.TestngSuiteListener.onFinish(TestngSuiteListener.java:77)
at org.testng.SuiteRunner.invokeListeners(SuiteRunner.java:232)
at org.testng.SuiteRunner.run(SuiteRunner.java:292)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:281)
at org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute(TestNGXmlTestSuite.java:75)
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:121)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:121)
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -162,6 +162,8 @@ public interface CosPlayPlayerService {
public JSONObject getCategory(String roomno);
public JSONObject saveAttention();
public JSONObject saveAttention(String isAttention);
public JSONObject enterRoom(String roomNo);
}
......@@ -1124,12 +1124,12 @@ public class CosPlyaPlayerServiceImpl implements CosPlayPlayerService {
@Override
public JSONObject holdUp(String roomno) {
String userGetUrl = "https://"+env+"-api-app.apeiwan.com/api/v4/room/get-room-mic-all";
String userGetUrl = "https://"+env+"-api-app.apeiwan.com/api/v2/room/mic/hold-up";
Map<String, Object> sendParams = new HashMap();
headers.put("token", userMobileToken);
sendParams.put("roomNo", roomno);
sendParams.put("index", 1);
sendParams.put("userId", 4022309);
sendParams.put("userId", 5523051);//对应手机号13823774134
JSONObject jsonObj = HttpToolKit.invokePost(userGetUrl, headers, sendParams).getJSONObject();
return jsonObj;
}
......@@ -1141,7 +1141,8 @@ public class CosPlyaPlayerServiceImpl implements CosPlayPlayerService {
headers.put("token", userMobileToken);
sendParams.put("roomNo", roomno);
sendParams.put("index", 1);
sendParams.put("userId", 4022309);
sendParams.put("userId", 5523051);//对应手机号13823774134
sendParams.put("status", "-1");
JSONObject jsonObj = HttpToolKit.invokePost(userGetUrl, headers, sendParams).getJSONObject();
return jsonObj;
}
......@@ -1266,12 +1267,23 @@ public class CosPlyaPlayerServiceImpl implements CosPlayPlayerService {
}
@Override
public JSONObject saveAttention() {
public JSONObject saveAttention(String isAttention) {
String userGetUrl = "https://"+env+"-api-app.apeiwan.com/api/v1/user-friend/save-attention";
Map<String, Object> sendParams = new HashMap();
headers.put("token", userMobileToken);
sendParams.put("toUserId", 5523052);
sendParams.put("isAttention", "0");
sendParams.put("isAttention", isAttention);
JSONObject jsonObj = HttpToolKit.invokePost(userGetUrl, headers, sendParams).getJSONObject();
return jsonObj;
}
@Override
public JSONObject enterRoom(String roomNo) {
String userGetUrl = "https://"+env+"-api-app.apeiwan.com/api/v2/room/enter";
Map<String, Object> sendParams = new HashMap();
headers.put("token", "APP-75874e548d9949eaa9f5a513a1e9b933#4022309");
sendParams.put("isFirstEnter", 1);
sendParams.put("roomNo", roomNo);
JSONObject jsonObj = HttpToolKit.invokePost(userGetUrl, headers, sendParams).getJSONObject();
return jsonObj;
}
......
......@@ -505,13 +505,13 @@ public class CosPlayerTest extends AbstractTest {
JSONObject rsp = cosPlyaPlayerServiceImpl.roomMicAll();
Assert.assertEquals(rsp.getIntValue("status"), BasicData.status);
}
@Test(enabled = true, alwaysRun = true,description = "聊天室上麦/ /api/v2/room/mic/hold-up")
@Test(enabled = false, alwaysRun = false,description = "聊天室上麦/ /api/v2/room/mic/hold-up")
public void testHoldUp() {
CosPlayPlayerService cosPlyaPlayerServiceImpl = new CosPlyaPlayerServiceImpl();
JSONObject rsp = cosPlyaPlayerServiceImpl.holdUp(BasicData.roomNo);
Assert.assertEquals(rsp.getIntValue("status"), BasicData.status);
}
@Test(enabled = true, alwaysRun = true,description = "聊天室下麦/ /api/v2/room/mic/hold-status")
@Test(enabled = false, alwaysRun = false,dependsOnMethods="testHoldUp", description = "聊天室下麦/ /api/v2/room/mic/hold-status")
public void testHoldStatus() {
CosPlayPlayerService cosPlyaPlayerServiceImpl = new CosPlyaPlayerServiceImpl();
JSONObject rsp = cosPlyaPlayerServiceImpl.holdStatus(BasicData.roomNo);
......@@ -583,9 +583,23 @@ public class CosPlayerTest extends AbstractTest {
}
@Test(enabled = true, alwaysRun = true,description = "关注 /api/v1/user-friend/save-attention")
public void testSaveAttention() {
public void testSaveAttentionPass() {
CosPlayPlayerService cosPlyaPlayerServiceImpl = new CosPlyaPlayerServiceImpl();
JSONObject rsp = cosPlyaPlayerServiceImpl.saveAttention();
JSONObject rsp = cosPlyaPlayerServiceImpl.saveAttention("1");
Assert.assertEquals(rsp.getIntValue("status"), BasicData.status);
}
@Test(enabled = true, alwaysRun = true,dependsOnMethods="testSaveAttentionPass", description = "取消关注 /api/v1/user-friend/save-attention")
public void testSaveAttentionCancel() {
CosPlayPlayerService cosPlyaPlayerServiceImpl = new CosPlyaPlayerServiceImpl();
JSONObject rsp = cosPlyaPlayerServiceImpl.saveAttention("0");
Assert.assertEquals(rsp.getIntValue("status"), BasicData.status);
}
@Test(enabled = true, alwaysRun = true, description = "进入房间/api/v2/room/enter")
public void testEnterRoom() {
CosPlayPlayerService cosPlyaPlayerServiceImpl = new CosPlyaPlayerServiceImpl();
JSONObject rsp = cosPlyaPlayerServiceImpl.enterRoom(BasicData.roomNo);
Assert.assertEquals(rsp.getIntValue("status"), BasicData.status);
}
......
{"environment":"pre-test","failed":0,"passed":1,"skipped":0,"suiteDuration":"03秒742毫秒","suiteEnds":"2021-09-06 18:01:06","suiteStarts":"2021-09-06 18:01:02","total":1}
\ No newline at end of file
{"environment":"pre-test","failed":0,"passed":52,"skipped":0,"suiteDuration":"01分24秒523毫秒","suiteEnds":"2021-09-07 17:32:22","suiteStarts":"2021-09-07 17:30:58","total":52}
\ No newline at end of file
This diff could not be displayed because it is too large.
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
<testsuite hostname="DESKTOP-U3UHQH3" ignored="55" name="Default test" tests="1" failures="0" timestamp="06 九月 2021 10:01:06 GMT" time="3.724" errors="0">
<testcase name="testSaveAttention" time="0.209" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDictGet" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testDictGet -->
<testcase name="testgiftProductList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testgiftProductList -->
<testcase name="testRoomEnter" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRoomEnter -->
<testcase name="testRoomMicAll" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRoomMicAll -->
<testcase name="testMicAll" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testMicAll -->
<testcase name="testUpList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testUpList -->
<testcase name="testUserList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testUserList -->
<testcase name="testRoomRecord" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRoomRecord -->
<testcase name="testGiftList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGiftList -->
<testcase name="testBSend" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testBSend -->
<testcase name="testHoldUp" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testHoldUp -->
<testcase name="testVirtualProductList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testVirtualProductList -->
<testcase name="testOrderList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testOrderList -->
<testcase name="testAuditGuild" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testAuditGuild -->
<testcase name="testGetUserSimple2" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGetUserSimple2 -->
<testcase name="testGetCategory" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGetCategory -->
<testcase name="testGetSessionkey" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGetSessionkey -->
<testcase name="testMenu" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testMenu -->
<testcase name="testBanner" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testBanner -->
<testcase name="testProgress" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testProgress -->
<testcase name="testRecordExport" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRecordExport -->
<testcase name="testMSend" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testMSend -->
<testcase name="testDynamicGet" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testDynamicGet -->
<testcase name="testGuildSearch" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGuildSearch -->
<testcase name="testOperations" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testOperations -->
<testsuite hostname="DESKTOP-U3UHQH3" ignored="6" name="Default test" tests="52" failures="0" timestamp="07 九月 2021 09:32:22 GMT" time="84.5" errors="0">
<testcase name="testActivityList" time="0.39" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testAuditGuild" time="2.133" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testAuditText" time="0.256" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetMine" time="0.266" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetUserBalance" time="0.12" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetUserSimple" time="0.456" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGethome" time="0.154" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testManagerList" time="0.13" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMoneyDetailsSave" time="0.886" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOrderProduct" time="0.497" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOrderSubmit" time="0.255" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testPipibiSend" time="0.545" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testPlayeeCenter" time="0.187" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testProductList" time="0.344" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testQSend" time="0.691" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRSend" time="0.765" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRecentAuditionDetails" time="0.184" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomList" time="0.504" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testSaveAttentionPass" time="0.255" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testState" time="0.257" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testTypeList" time="0.321" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testUpSize" time="0.266" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testVirtualMoneyModify" time="0.47" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testWallet" time="0.174" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testbackpackGift" time="0.33" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testgiftBoxSend" time="0.587" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testBSend" time="0.718" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDictGet" time="0.133" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDynamicGet" time="0.112" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testEnterRoom" time="0.612" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetCategory" time="0.19" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetSessionkey" time="0.207" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetUserSimple2" time="0.449" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGiftList" time="0.312" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGuildSearch" time="0.22" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testLotteryActivity" time="0.732" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMSend" time="0.946" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMenu" time="0.437" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMicAll" time="0.445" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOperations" time="0.224" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOrderList" time="0.872" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testProgress" time="0.159" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomEnter" time="0.267" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomMicAll" time="0.263" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomRecord" time="1.023" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testUpList" time="0.286" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testUserList" time="1.323" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testVersionConfig" time="0.37" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testVirtualProductList" time="2.84" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testgiftProductList" time="0.54" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRemove" time="1.862" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testSaveAttentionCancel" time="0.25" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDelete" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testDelete -->
<testcase name="testHoldStatus" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testHoldStatus -->
<testcase name="testGetUserSimple" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGetUserSimple -->
<testcase name="testAuditText" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<testcase name="testBanner" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testAuditText -->
<testcase name="testLotteryActivity" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
</testcase> <!-- testBanner -->
<testcase name="testHoldUp" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testLotteryActivity -->
<testcase name="testRemove" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
</testcase> <!-- testHoldUp -->
<testcase name="testRecordExport" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRemove -->
</testcase> <!-- testRecordExport -->
<testcase name="testUserGet" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testUserGet -->
<testcase name="testRecentAuditionDetails" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRecentAuditionDetails -->
<testcase name="testGetMine" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGetMine -->
<testcase name="testQSend" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testQSend -->
<testcase name="testUpSize" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testUpSize -->
<testcase name="testRoomList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRoomList -->
<testcase name="testRSend" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testRSend -->
<testcase name="testGetUserBalance" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGetUserBalance -->
<testcase name="testOrderSubmit" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testOrderSubmit -->
<testcase name="testMoneyDetailsSave" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testMoneyDetailsSave -->
<testcase name="testActivityList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testActivityList -->
<testcase name="testVirtualMoneyModify" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testVirtualMoneyModify -->
<testcase name="testProductList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testProductList -->
<testcase name="testManagerList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testManagerList -->
<testcase name="testVersionConfig" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testVersionConfig -->
<testcase name="testOrderProduct" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testOrderProduct -->
<testcase name="testPlayeeCenter" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testPlayeeCenter -->
<testcase name="testState" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testState -->
<testcase name="testGethome" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testGethome -->
<testcase name="testWallet" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testWallet -->
<testcase name="testbackpackGift" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testbackpackGift -->
<testcase name="testTypeList" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testTypeList -->
<testcase name="testgiftBoxSend" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testgiftBoxSend -->
<testcase name="testPipibiSend" time="0.0" classname="com.pipi.invoker.CosPlayerTest">
<ignored/>
</testcase> <!-- testPipibiSend -->
</testsuite> <!-- Default test -->
......@@ -7,8 +7,9 @@
<methods>
<include name="springTestContextBeforeTestClass"/>
<include name="afterClass"/>
<include name="testBanner"/>
<include name="testHoldStatus"/>
<include name="BeforeClassTest"/>
<include name="testHoldUp"/>
<include name="afterClassTest"/>
<include name="springTestContextPrepareTestInstance"/>
<include name="springTestContextAfterTestClass"/>
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitReportReporter -->
<testsuite name="com.pipi.invoker.CosPlayerTest" tests="1" time="0.211" ignored="55" failures="0" timestamp="06 九月 2021 10:01:07 GMT" skipped="0" hostname="DESKTOP-U3UHQH3" errors="0">
<testcase name="testSaveAttention" time="0.211" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDictGet" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testDictGet -->
<testcase name="testgiftProductList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testgiftProductList -->
<testcase name="testRoomEnter" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRoomEnter -->
<testcase name="testRoomMicAll" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRoomMicAll -->
<testcase name="testMicAll" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testMicAll -->
<testcase name="testUpList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testUpList -->
<testcase name="testUserList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testUserList -->
<testcase name="testRoomRecord" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRoomRecord -->
<testcase name="testGiftList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGiftList -->
<testcase name="testBSend" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testBSend -->
<testcase name="testHoldUp" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testHoldUp -->
<testcase name="testVirtualProductList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testVirtualProductList -->
<testcase name="testOrderList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testOrderList -->
<testcase name="testAuditGuild" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testAuditGuild -->
<testcase name="testGetUserSimple2" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGetUserSimple2 -->
<testcase name="testGetCategory" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGetCategory -->
<testcase name="testGetSessionkey" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGetSessionkey -->
<testcase name="testMenu" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testMenu -->
<testcase name="testBanner" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testBanner -->
<testcase name="testProgress" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testProgress -->
<testcase name="testRecordExport" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRecordExport -->
<testcase name="testMSend" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testMSend -->
<testcase name="testDynamicGet" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testDynamicGet -->
<testcase name="testGuildSearch" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGuildSearch -->
<testcase name="testOperations" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testOperations -->
<testsuite name="com.pipi.invoker.CosPlayerTest" tests="52" time="27.261" ignored="6" failures="0" timestamp="07 九月 2021 09:32:23 GMT" skipped="0" hostname="DESKTOP-U3UHQH3" errors="0">
<testcase name="testSaveAttentionCancel" time="0.250" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testProductList" time="0.346" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testTypeList" time="0.322" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRemove" time="1.863" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testgiftBoxSend" time="0.587" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDictGet" time="0.133" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testManagerList" time="0.131" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOrderList" time="0.874" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRSend" time="0.766" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetSessionkey" time="0.208" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testPlayeeCenter" time="0.187" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMSend" time="0.946" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOperations" time="0.224" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testUserList" time="1.323" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomMicAll" time="0.264" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testAuditText" time="0.257" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testPipibiSend" time="0.546" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGethome" time="0.156" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGuildSearch" time="0.222" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testUpList" time="0.287" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomList" time="0.505" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDynamicGet" time="0.113" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testBSend" time="0.719" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testUpSize" time="0.266" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetUserSimple2" time="0.449" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOrderProduct" time="0.499" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetUserBalance" time="0.120" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetUserSimple" time="0.457" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRecentAuditionDetails" time="0.188" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMicAll" time="0.446" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testVirtualProductList" time="2.840" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testProgress" time="0.160" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testSaveAttentionPass" time="0.256" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGiftList" time="0.312" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testVirtualMoneyModify" time="0.471" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testVersionConfig" time="0.371" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMenu" time="0.438" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomRecord" time="1.024" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testMoneyDetailsSave" time="0.888" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testOrderSubmit" time="0.255" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetCategory" time="0.191" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testgiftProductList" time="0.542" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testWallet" time="0.176" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testbackpackGift" time="0.331" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testActivityList" time="0.390" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testRoomEnter" time="0.267" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testGetMine" time="0.266" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testLotteryActivity" time="0.734" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testQSend" time="0.692" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testAuditGuild" time="2.133" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testState" time="0.257" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testEnterRoom" time="0.613" classname="com.pipi.invoker.CosPlayerTest"/>
<testcase name="testDelete" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testDelete -->
<testcase name="testHoldStatus" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testHoldStatus -->
<testcase name="testGetUserSimple" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGetUserSimple -->
<testcase name="testAuditText" classname="com.pipi.invoker.CosPlayerTest">
<testcase name="testBanner" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testAuditText -->
<testcase name="testLotteryActivity" classname="com.pipi.invoker.CosPlayerTest">
</testcase> <!-- testBanner -->
<testcase name="testHoldUp" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testLotteryActivity -->
<testcase name="testRemove" classname="com.pipi.invoker.CosPlayerTest">
</testcase> <!-- testHoldUp -->
<testcase name="testRecordExport" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRemove -->
</testcase> <!-- testRecordExport -->
<testcase name="testUserGet" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testUserGet -->
<testcase name="testRecentAuditionDetails" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRecentAuditionDetails -->
<testcase name="testGetMine" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGetMine -->
<testcase name="testQSend" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testQSend -->
<testcase name="testUpSize" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testUpSize -->
<testcase name="testRoomList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRoomList -->
<testcase name="testRSend" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testRSend -->
<testcase name="testGetUserBalance" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGetUserBalance -->
<testcase name="testOrderSubmit" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testOrderSubmit -->
<testcase name="testMoneyDetailsSave" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testMoneyDetailsSave -->
<testcase name="testActivityList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testActivityList -->
<testcase name="testVirtualMoneyModify" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testVirtualMoneyModify -->
<testcase name="testProductList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testProductList -->
<testcase name="testManagerList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testManagerList -->
<testcase name="testVersionConfig" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testVersionConfig -->
<testcase name="testOrderProduct" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testOrderProduct -->
<testcase name="testPlayeeCenter" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testPlayeeCenter -->
<testcase name="testState" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testState -->
<testcase name="testGethome" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testGethome -->
<testcase name="testWallet" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testWallet -->
<testcase name="testbackpackGift" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testbackpackGift -->
<testcase name="testTypeList" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testTypeList -->
<testcase name="testgiftBoxSend" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testgiftBoxSend -->
<testcase name="testPipibiSend" classname="com.pipi.invoker.CosPlayerTest">
<skipped/>
</testcase> <!-- testPipibiSend -->
</testsuite> <!-- com.pipi.invoker.CosPlayerTest -->
......@@ -56,27 +56,27 @@
</tr>
<tr>
<td>&nbsp;</td>
<td>testDictGet</td>
<td>testUpList</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testUpList</td>
<td>testDictGet</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testgiftProductList</td>
<td>testRoomEnter</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testRoomEnter</td>
<td>testRoomMicAll</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testRoomMicAll</td>
<td>testgiftProductList</td>
<td>pipi-test </td>
</tr>
<tr>
......@@ -106,17 +106,17 @@
</tr>
<tr>
<td>&nbsp;</td>
<td>testGuildSearch</td>
<td>testEnterRoom</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testOperations</td>
<td>testGuildSearch</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testSaveAttention</td>
<td>testOperations</td>
<td>pipi-test </td>
</tr>
<tr>
......@@ -146,6 +146,11 @@
</tr>
<tr>
<td>&nbsp;</td>
<td>testSaveAttentionPass</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testLotteryActivity</td>
<td>pipi-test </td>
</tr>
......@@ -181,6 +186,11 @@
</tr>
<tr>
<td>&nbsp;</td>
<td>testSaveAttentionCancel</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testGetUserSimple</td>
<td>pipi-test </td>
</tr>
......@@ -256,12 +266,12 @@
</tr>
<tr>
<td>&nbsp;</td>
<td>testMoneyDetailsSave</td>
<td>testActivityList</td>
<td>pipi-test </td>
</tr>
<tr>
<td>&nbsp;</td>
<td>testActivityList</td>
<td>testMoneyDetailsSave</td>
<td>pipi-test </td>
</tr>
<tr>
......
<h2>Groups used for this test run</h2><table border="1">
<tr> <td align="center"><b>Group name</b></td><td align="center"><b>Methods</b></td></tr><tr><td>pipi-test</td><td>CosPlayerTest.testSaveAttention()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]<br/></td></tr>
<tr> <td align="center"><b>Group name</b></td><td align="center"><b>Methods</b></td></tr><tr><td>pipi-test</td><td>CosPlayerTest.testDictGet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testMicAll()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testRoomEnter()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testRoomMicAll()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testgiftProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testUpList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testUserList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testRoomRecord()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGiftList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testBSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testVirtualProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testAuditGuild()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testOrderList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGetUserSimple2()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGetCategory()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGetSessionkey()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testMenu()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testProgress()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testMSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testDynamicGet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testEnterRoom()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGuildSearch()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testOperations()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testSaveAttentionCancel()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testAuditText()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGetUserSimple()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testLotteryActivity()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testRemove()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testRecentAuditionDetails()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testSaveAttentionPass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGetMine()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testQSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testUpSize()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testRoomList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGetUserBalance()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testRSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testOrderSubmit()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testActivityList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testMoneyDetailsSave()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testVirtualMoneyModify()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testManagerList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testOrderProduct()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testVersionConfig()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testPlayeeCenter()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testState()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testGethome()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testWallet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testbackpackGift()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testTypeList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testgiftBoxSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/>CosPlayerTest.testPipibiSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]<br/></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="f385a2"> <td>21/09/06 18:01:02</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;CosPlayerTest.BeforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;BeforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="ee72e6"> <td>21/09/06 18:01:06</td> <td>3504</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;BaseDubboTestCase.afterClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;afterClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/06 18:01:06</td> <td>3504</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;CosPlayerTest.afterClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;afterClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="ee72e6"> <td>21/09/06 18:01:02</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;BaseDubboTestCase.beforeClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;beforeClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="7362d6"> <td>21/09/06 18:01:02</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTest.beforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;beforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:06</td> <td>3504</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;springTestContextAfterTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:06</td> <td>3503</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:02</td> <td>-213</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;springTestContextBeforeTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:03</td> <td>887</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:02</td> <td>-211</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextPrepareTestInstance()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;springTestContextPrepareTestInstance</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/06 18:01:03</td> <td>887</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testSaveAttention()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">testSaveAttention</td>
<td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:30:58</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;CosPlayerTest.BeforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;BeforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="8ee691"> <td>21/09/07 17:32:22</td> <td>84283</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;BaseDubboTestCase.afterClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;afterClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:22</td> <td>84283</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;CosPlayerTest.afterClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;afterClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="8ee691"> <td>21/09/07 17:30:58</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;BaseDubboTestCase.beforeClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;beforeClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="9fe9b6"> <td>21/09/07 17:30:58</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTest.beforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;beforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:22</td> <td>84283</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:03</td> <td>5030</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:06</td> <td>7919</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:07</td> <td>9059</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:08</td> <td>10291</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:09</td> <td>11226</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:11</td> <td>12650</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:12</td> <td>13623</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:15</td> <td>16854</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:17</td> <td>18788</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:18</td> <td>20405</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:21</td> <td>23047</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:23</td> <td>24526</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:24</td> <td>25680</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:25</td> <td>26548</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:26</td> <td>28214</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:28</td> <td>29687</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:29</td> <td>30696</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:30</td> <td>32301</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:32</td> <td>33560</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:33</td> <td>34549</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:34</td> <td>35698</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:35</td> <td>36705</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:36</td> <td>37948</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:37</td> <td>38898</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:38</td> <td>39973</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:39</td> <td>41374</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:41</td> <td>43231</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:42</td> <td>44074</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:43</td> <td>44996</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:44</td> <td>46255</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:45</td> <td>47112</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:48</td> <td>50165</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:50</td> <td>51565</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:51</td> <td>52751</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:52</td> <td>53841</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:54</td> <td>55614</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:56</td> <td>57656</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:57</td> <td>58840</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:59</td> <td>60699</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:00</td> <td>62288</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:02</td> <td>63975</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:03</td> <td>64861</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:04</td> <td>66216</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:05</td> <td>67414</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:08</td> <td>69547</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:09</td> <td>71202</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:11</td> <td>73399</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:13</td> <td>74712</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:16</td> <td>78462</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:18</td> <td>79816</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:21</td> <td>83234</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:22</td> <td>84282</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:30:58</td> <td>-210</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:00</td> <td>2349</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:03</td> <td>5031</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:06</td> <td>7919</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:07</td> <td>9060</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:08</td> <td>10293</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:09</td> <td>11226</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:11</td> <td>12650</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:12</td> <td>13623</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:15</td> <td>16854</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:17</td> <td>18790</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:18</td> <td>20406</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:21</td> <td>23047</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:23</td> <td>24527</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:24</td> <td>25680</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:25</td> <td>26549</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:26</td> <td>28216</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:28</td> <td>29689</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:29</td> <td>30696</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:30</td> <td>32302</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:32</td> <td>33561</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:33</td> <td>34550</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:34</td> <td>35700</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:35</td> <td>36705</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:36</td> <td>37949</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:37</td> <td>38900</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:38</td> <td>39975</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:39</td> <td>41374</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:41</td> <td>43232</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:42</td> <td>44074</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:43</td> <td>44998</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:44</td> <td>46255</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:45</td> <td>47112</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:48</td> <td>50167</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:50</td> <td>51566</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:51</td> <td>52751</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:52</td> <td>53843</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:54</td> <td>55615</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:56</td> <td>57657</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:57</td> <td>58841</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:59</td> <td>60700</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:00</td> <td>62288</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:02</td> <td>63980</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:03</td> <td>64861</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:04</td> <td>66217</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:05</td> <td>67415</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:08</td> <td>69548</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:09</td> <td>71203</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:11</td> <td>73401</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:13</td> <td>74714</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:16</td> <td>78462</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:18</td> <td>79818</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:21</td> <td>83234</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:30:58</td> <td>-208</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextPrepareTestInstance()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextPrepareTestInstance</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:00</td> <td>2349</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testActivityList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testActivityList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:03</td> <td>5031</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testAuditGuild()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testAuditGuild</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:06</td> <td>7919</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testAuditText()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testAuditText</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:39</td> <td>41374</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testBSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testBSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:41</td> <td>43232</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testDictGet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testDictGet</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:42</td> <td>44074</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testDynamicGet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testDynamicGet</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:43</td> <td>44998</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testEnterRoom()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testEnterRoom</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:44</td> <td>46255</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetCategory()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetCategory</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:07</td> <td>9061</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetMine()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetMine</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:45</td> <td>47112</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetSessionkey()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetSessionkey</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:08</td> <td>10293</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetUserBalance()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetUserBalance</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:09</td> <td>11226</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetUserSimple()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetUserSimple</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:48</td> <td>50167</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetUserSimple2()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetUserSimple2</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:11</td> <td>12650</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGethome()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGethome</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:50</td> <td>51566</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGiftList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGiftList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:51</td> <td>52751</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGuildSearch()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGuildSearch</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:52</td> <td>53843</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testLotteryActivity()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testLotteryActivity</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:54</td> <td>55615</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:12</td> <td>13623</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testManagerList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testManagerList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:56</td> <td>57657</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMenu()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMenu</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:57</td> <td>58841</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMicAll()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMicAll</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:15</td> <td>16854</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMoneyDetailsSave()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMoneyDetailsSave</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:59</td> <td>60700</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOperations()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOperations</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:00</td> <td>62288</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOrderList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOrderList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:17</td> <td>18790</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOrderProduct()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOrderProduct</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:18</td> <td>20406</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOrderSubmit()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOrderSubmit</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:21</td> <td>23047</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testPipibiSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testPipibiSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:23</td> <td>24528</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testPlayeeCenter()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testPlayeeCenter</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:24</td> <td>25680</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testProductList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:02</td> <td>63980</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testProgress()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testProgress</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:25</td> <td>26549</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testQSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testQSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:26</td> <td>28217</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:28</td> <td>29689</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRecentAuditionDetails()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRecentAuditionDetails</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:18</td> <td>79818</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRemove()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRemove</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:03</td> <td>64861</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomEnter()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomEnter</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:29</td> <td>30696</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:04</td> <td>66218</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomMicAll()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomMicAll</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:05</td> <td>67415</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomRecord()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomRecord</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:21</td> <td>83234</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testSaveAttentionCancel()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testSaveAttentionCancel</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:30</td> <td>32302</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testSaveAttentionPass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testSaveAttentionPass</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:32</td> <td>33561</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testState()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testState</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:33</td> <td>34550</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testTypeList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testTypeList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:08</td> <td>69549</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testUpList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testUpList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:34</td> <td>35700</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testUpSize()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testUpSize</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:09</td> <td>71203</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testUserList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testUserList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:11</td> <td>73401</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testVersionConfig()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testVersionConfig</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:35</td> <td>36705</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testVirtualMoneyModify()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testVirtualMoneyModify</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:13</td> <td>74714</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testVirtualProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testVirtualProductList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:36</td> <td>37950</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testWallet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testWallet</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:37</td> <td>38900</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testbackpackGift()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testbackpackGift</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:38</td> <td>39975</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testgiftBoxSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testgiftBoxSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:16</td> <td>78462</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testgiftProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testgiftProductList</td>
<td>main@1609124502</td> <td></td> </tr>
</table>
<h2>Methods that were not run</h2><table>
<tr><td>com.pipi.invoker.CosPlayerTest.testDictGet<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取字典/api/v2/dict/get</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testgiftProductList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取礼物列表(非聊天室内)/api/v1/gift-product/list </i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRoomEnter<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>进入房间/api/v2/room/enter</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRoomMicAll<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>麦位相关接口</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testMicAll<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>聊天室所有麦位信息/api/v1/room/mic/all</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testUpList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取上麦、试音申请列表数据</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testUserList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>用户信息</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRoomRecord<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询超管巡查记录 /api/v1/rask/manager/room/record</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGiftList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>礼物列表</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testBSend<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>送背包礼物</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testHoldUp<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>聊天室上麦/ /api/v2/room/mic/hold-up</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testVirtualProductList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取礼物面板/api/v6/virtual-product/list </i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testOrderList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询订单</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testAuditGuild<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>申请加入公会及审核</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGetUserSimple2<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取用户信息v2</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGetCategory<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>搜索房间 /api/v1/category/get</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGetSessionkey<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取sessionkey /api/v1/global/form/sessionkey</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testMenu<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>菜单信息</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testBanner<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询banner信息banner-/api/v3/banner/get</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testProgress<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>/api/v1/lottery-activity/carnival-progress 房间-游戏图标-糖果制造机-嘉年华</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRecordExport<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询超管巡查记录导出</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testMSend<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>送魅力值礼物</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testDynamicGet<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>首页视频推荐/api/v2/dynamic/get</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGuildSearch<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>搜索公会</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testOperations<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>api/v1/welfare-center/operations</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testDelete<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>/v1/rask/manager/status/delete</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testHoldStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>聊天室下麦/ /api/v2/room/mic/hold-status</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGetUserSimple<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取用户信息v1</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testAuditText<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>聊天室IM消息 /api/v1/im/audit-text</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testLotteryActivity<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>开宝箱</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRemove<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>将成员从公会移除</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testBanner<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询banner信息banner-/api/v3/banner/get</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testHoldUp<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>聊天室上麦/ /api/v2/room/mic/hold-up</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRecordExport<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询超管巡查记录导出</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testUserGet<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>/api/v2/user/get 获取用户信息</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRecentAuditionDetails<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>派单厅-/api/v2/assign/recent-audition-details</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGetMine<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>/api/v3/user/get-mine 获取用户信(人气等级)</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testQSend<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>送全服礼物</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testUpSize<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取聊天室内上麦试音队列、点单队列等</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRoomList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询房间</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testRSend<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>送热度值礼物</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGetUserBalance<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>获取用户皮皮币/钻石余额</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testOrderSubmit<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>陪玩订单下单 /api/v1/lottery-activity/carnival-progress</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>充皮皮币</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testActivityList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>幸运夺宝箱列表</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>充钻石</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testProductList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>/api/v1/product/list</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testManagerList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询超管列表 /api/v1/rask/manager/list</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testVersionConfig<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>APP配置信息</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testOrderProduct<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>下单-王者荣耀</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testPlayeeCenter<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>陪玩师中心/api/v1/playee/center</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testState<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>首页获取关注类信息,app首页显示时会调用 /api/v2/dynamic-info-flow/</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testGethome<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i> /api/v3/user/get-home获取用户信息(用户是否是巡管员) </i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testWallet<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>/api/v1/wallet/wallet-info/get 查询钱包余额:钻石、皮皮币、魅力值等</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testbackpackGift<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>查询背包礼物信息 /api/v3/virtual-product/my/backpack/gift</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testTypeList<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>个性装扮首页 /api/v2/decorations/index/type-list</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testgiftBoxSend<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>赠送礼盒 /api/v2/room/gift-box/send</i></td></tr>
<tr><td>com.pipi.invoker.CosPlayerTest.testPipibiSend<br/>&nbsp;&nbsp;&nbsp;&nbsp;<i>送皮皮币礼物</i></td></tr>
</table>
\ No newline at end of file
<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="d4bf7e"> <td>21/09/06 18:01:02</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;springTestContextBeforeTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:02</td> <td>2</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextPrepareTestInstance()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;springTestContextPrepareTestInstance</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="ee72e6"> <td>21/09/06 18:01:02</td> <td>213</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;BaseDubboTestCase.beforeClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;beforeClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="7362d6"> <td>21/09/06 18:01:02</td> <td>213</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTest.beforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;beforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/06 18:01:02</td> <td>213</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;CosPlayerTest.BeforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;BeforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:03</td> <td>1100</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/06 18:01:03</td> <td>1100</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testSaveAttention()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">testSaveAttention</td>
<td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:06</td> <td>3716</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/06 18:01:06</td> <td>3717</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;CosPlayerTest.afterClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;afterClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="ee72e6"> <td>21/09/06 18:01:06</td> <td>3717</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;BaseDubboTestCase.afterClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;afterClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="d4bf7e"> <td>21/09/06 18:01:06</td> <td>3717</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@67c27493]">&lt;&lt;springTestContextAfterTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1365008457</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:30:58</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:30:58</td> <td>2</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextPrepareTestInstance()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextPrepareTestInstance</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="8ee691"> <td>21/09/07 17:30:58</td> <td>210</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;BaseDubboTestCase.beforeClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;beforeClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="9fe9b6"> <td>21/09/07 17:30:58</td> <td>210</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTest.beforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;beforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:30:58</td> <td>210</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;CosPlayerTest.BeforeClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;BeforeClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:00</td> <td>2559</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:00</td> <td>2559</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testActivityList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testActivityList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:03</td> <td>5240</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:03</td> <td>5241</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:03</td> <td>5241</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testAuditGuild()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testAuditGuild</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:06</td> <td>8129</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:06</td> <td>8129</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:06</td> <td>8129</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testAuditText()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testAuditText</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:07</td> <td>9269</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:07</td> <td>9270</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:07</td> <td>9271</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetMine()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetMine</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:08</td> <td>10501</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:08</td> <td>10503</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:08</td> <td>10503</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetUserBalance()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetUserBalance</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:09</td> <td>11436</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:09</td> <td>11436</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:09</td> <td>11436</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetUserSimple()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetUserSimple</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:11</td> <td>12860</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:11</td> <td>12860</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:11</td> <td>12860</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGethome()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGethome</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:12</td> <td>13833</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:12</td> <td>13833</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:12</td> <td>13833</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testManagerList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testManagerList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:15</td> <td>17064</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:15</td> <td>17064</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:15</td> <td>17064</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMoneyDetailsSave()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMoneyDetailsSave</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:17</td> <td>18998</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:17</td> <td>19000</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:17</td> <td>19000</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOrderProduct()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOrderProduct</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:18</td> <td>20615</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:18</td> <td>20616</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:18</td> <td>20616</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOrderSubmit()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOrderSubmit</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:21</td> <td>23257</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:21</td> <td>23257</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:21</td> <td>23257</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testPipibiSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testPipibiSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:23</td> <td>24736</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:23</td> <td>24737</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:23</td> <td>24738</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testPlayeeCenter()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testPlayeeCenter</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:24</td> <td>25890</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:24</td> <td>25890</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:24</td> <td>25890</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testProductList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:25</td> <td>26758</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:25</td> <td>26759</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:25</td> <td>26759</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testQSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testQSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:26</td> <td>28424</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:26</td> <td>28426</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:26</td> <td>28427</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:28</td> <td>29897</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:28</td> <td>29899</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:28</td> <td>29899</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRecentAuditionDetails()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRecentAuditionDetails</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:29</td> <td>30906</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:29</td> <td>30906</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:29</td> <td>30906</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:30</td> <td>32511</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:30</td> <td>32512</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:30</td> <td>32512</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testSaveAttentionPass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testSaveAttentionPass</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:32</td> <td>33770</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:32</td> <td>33771</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:32</td> <td>33771</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testState()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testState</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:33</td> <td>34759</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:33</td> <td>34760</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:33</td> <td>34760</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testTypeList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testTypeList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:34</td> <td>35908</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:34</td> <td>35910</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:34</td> <td>35910</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testUpSize()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testUpSize</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:35</td> <td>36915</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:35</td> <td>36915</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:35</td> <td>36915</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testVirtualMoneyModify()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testVirtualMoneyModify</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:36</td> <td>38158</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:36</td> <td>38159</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:36</td> <td>38160</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testWallet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testWallet</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:37</td> <td>39108</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:37</td> <td>39110</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:37</td> <td>39110</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testbackpackGift()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testbackpackGift</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:38</td> <td>40183</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:38</td> <td>40185</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:38</td> <td>40185</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testgiftBoxSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testgiftBoxSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:39</td> <td>41584</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:39</td> <td>41584</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:39</td> <td>41584</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testBSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testBSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:41</td> <td>43441</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:41</td> <td>43442</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:41</td> <td>43442</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testDictGet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testDictGet</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:42</td> <td>44284</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:42</td> <td>44284</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:42</td> <td>44284</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testDynamicGet()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testDynamicGet</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:43</td> <td>45206</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:43</td> <td>45208</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:43</td> <td>45208</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testEnterRoom()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testEnterRoom</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:44</td> <td>46465</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:44</td> <td>46465</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:44</td> <td>46465</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetCategory()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetCategory</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:45</td> <td>47322</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:45</td> <td>47322</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:45</td> <td>47322</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetSessionkey()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetSessionkey</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:48</td> <td>50375</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:48</td> <td>50377</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:48</td> <td>50377</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGetUserSimple2()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGetUserSimple2</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:50</td> <td>51775</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:50</td> <td>51776</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:50</td> <td>51776</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGiftList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGiftList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:51</td> <td>52961</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:51</td> <td>52961</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:51</td> <td>52961</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testGuildSearch()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testGuildSearch</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:52</td> <td>54051</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:52</td> <td>54053</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:52</td> <td>54053</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testLotteryActivity()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testLotteryActivity</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:54</td> <td>55824</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:54</td> <td>55825</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:54</td> <td>55825</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMSend()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMSend</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:56</td> <td>57866</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:56</td> <td>57867</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:56</td> <td>57867</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMenu()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMenu</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:57</td> <td>59050</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:57</td> <td>59051</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:57</td> <td>59051</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testMicAll()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testMicAll</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:59</td> <td>60909</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:31:59</td> <td>60910</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:31:59</td> <td>60910</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOperations()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOperations</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:00</td> <td>62498</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:00</td> <td>62498</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:00</td> <td>62498</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testOrderList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testOrderList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:02</td> <td>64185</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:02</td> <td>64190</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:02</td> <td>64190</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testProgress()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testProgress</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:03</td> <td>65071</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:03</td> <td>65071</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:03</td> <td>65071</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomEnter()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomEnter</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:04</td> <td>66426</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:04</td> <td>66427</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:04</td> <td>66428</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomMicAll()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomMicAll</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:05</td> <td>67624</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:05</td> <td>67625</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:05</td> <td>67625</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRoomRecord()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRoomRecord</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:08</td> <td>69757</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:08</td> <td>69758</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:08</td> <td>69759</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testUpList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testUpList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:09</td> <td>71412</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:09</td> <td>71413</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:09</td> <td>71413</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testUserList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testUserList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:11</td> <td>73609</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:11</td> <td>73611</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:11</td> <td>73611</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testVersionConfig()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testVersionConfig</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:13</td> <td>74922</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:13</td> <td>74924</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:13</td> <td>74924</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testVirtualProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testVirtualProductList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:16</td> <td>78672</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:16</td> <td>78672</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:16</td> <td>78672</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testgiftProductList()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testgiftProductList</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:18</td> <td>80026</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:18</td> <td>80028</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:18</td> <td>80028</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testRemove()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testRemove</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:21</td> <td>83444</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:21</td> <td>83444</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;AbstractTestNGSpringContextTests.springTestContextBeforeTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&gt;&gt;springTestContextBeforeTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:21</td> <td>83444</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="CosPlayerTest.testSaveAttentionCancel()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">testSaveAttentionCancel</td>
<td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:22</td> <td>84492</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestMethod(java.lang.reflect.Method)[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestMethod</td>
<td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="f385a2"> <td>21/09/07 17:32:22</td> <td>84493</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;CosPlayerTest.afterClassTest()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;afterClassTest</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="8ee691"> <td>21/09/07 17:32:22</td> <td>84493</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;BaseDubboTestCase.afterClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;afterClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
<tr bgcolor="78a09f"> <td>21/09/07 17:32:22</td> <td>84493</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;AbstractTestNGSpringContextTests.springTestContextAfterTestClass()[pri:0, instance:com.pipi.invoker.CosPlayerTest@4efbca5a]">&lt;&lt;springTestContextAfterTestClass</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@1609124502</td> <td></td> </tr>
</table>
This diff could not be displayed because it is too large.
<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;guice-stage="DEVELOPMENT"&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.pipi.invoker.CosPlayerTest"&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;methods&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;include&nbsp;name="testSaveAttention"/&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/methods&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/class&gt;&nbsp;&lt;!--&nbsp;com.pipi.invoker.CosPlayerTest&nbsp;--&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;guice-stage="DEVELOPMENT"&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.pipi.invoker.CosPlayerTest"/&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,10 +10,10 @@
<tr valign='top'>
<td>1 test</td>
<td><a target='mainFrame' href='classes.html'>1 class</a></td>
<td>1 method:<br/>
<td>52 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 (55)</a></td>
&nbsp;&nbsp;<a target='mainFrame' href='methods-not-run.html'>not run (6)</a></td>
</tr>
<tr>
<td><a target='mainFrame' href='groups.html'>1 group</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 (1/0/0)</td><td valign='top' align='right'>
<table style='width: 100%'><tr><td valign='top'>Default test (52/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>1</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>52</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>1</td><td>0</td><td>0</td><td><a href='Default suite/testng.xml.html'>Link</a></td></tr></table></body></html>
<td>52</td><td>0</td><td>0</td><td><a href='Default suite/testng.xml.html'>Link</a></td></tr></table></body></html>
......@@ -7,8 +7,9 @@
<methods>
<include name="springTestContextBeforeTestClass"/>
<include name="afterClass"/>
<include name="testBanner"/>
<include name="testHoldStatus"/>
<include name="BeforeClassTest"/>
<include name="testHoldUp"/>
<include name="afterClassTest"/>
<include name="springTestContextPrepareTestInstance"/>
<include name="springTestContextAfterTestClass"/>
......
This diff could not be displayed because it is too large.
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!