remove comment
This commit is contained in:
parent
8cc9e17257
commit
29c9e6dd4e
|
@ -7,15 +7,15 @@ import javax.xml.bind.annotation.XmlRootElement;
|
|||
|
||||
@XmlRootElement
|
||||
public class ScriptBriefResultModel {
|
||||
private long totalSuccessCountFromBegin; // 传我totalSuccessCountFromBegin
|
||||
private long totalFailCountFromBegin; // 传我totalFailCountFromBegin
|
||||
private long averageResponseTime; // 传我totalResponseTimeThisTime
|
||||
private long maxResponseTime; // 需要agent处理,传我maxResponseTimeThisTime
|
||||
private long minResponseTime; // 需要agent处理,传我minResponseTimeThisTime
|
||||
private long successThroughputThisTime; // 需要agent处理,传我successThroughputThisTime
|
||||
private long failThroughputThisTime; // 需要agent处理,传我failThroughputThisTime
|
||||
private long responseTimeDeviationThisTime; // 传我totalSquareResponseTimeThisTime
|
||||
private long failRateThisTime;// 传我successCountThisTime和failCountThisTime
|
||||
private long totalSuccessCountFromBegin;
|
||||
private long totalFailCountFromBegin;
|
||||
private long averageResponseTime;
|
||||
private long maxResponseTime;
|
||||
private long minResponseTime;
|
||||
private long successThroughputThisTime;
|
||||
private long failThroughputThisTime;
|
||||
private long responseTimeDeviationThisTime;
|
||||
private long failRateThisTime;
|
||||
|
||||
private long averageElapsedTime;
|
||||
private long planedRunningTime;
|
||||
|
|
|
@ -70,7 +70,7 @@ public class TestPlanTester extends TestBase {
|
|||
while (this.getRunningInfo(testPlanID).getCurrentStatus() != TestPlanStatus.InRunning) {
|
||||
Thread.sleep(6000);
|
||||
}
|
||||
for (int i = 0; i < 3; i++) {
|
||||
for (int i = 0; i < 30; i++) {
|
||||
Thread.sleep(2000);
|
||||
this.getScriptBrief(testPlanID, SCRIPTID1);
|
||||
}
|
||||
|
@ -205,7 +205,7 @@ public class TestPlanTester extends TestBase {
|
|||
|
||||
public void getMonitorBrief(UUID testPlanID, String hostName, String port)
|
||||
throws IOException, InterruptedException {
|
||||
for (int i = 0; i < 1; i++) {
|
||||
for (int i = 0; i < 2; i++) {
|
||||
getMonitorMemoryResult(testPlanID, hostName, port);
|
||||
getProcessorResult(testPlanID, hostName, port);
|
||||
getLogicalDiskResult(testPlanID, hostName, port);
|
||||
|
|
Loading…
Reference in New Issue