-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change version 1.4 add export result in html, csv or json format
- Loading branch information
DABURON Vincent
committed
Jun 14, 2023
1 parent
96141ad
commit 1fe5fd6
Showing
14 changed files
with
501 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/main/java/io/github/vdaburon/jmeter/utils/reportkpi/GlobalResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package io.github.vdaburon.jmeter.utils.reportkpi; | ||
|
||
import java.util.List; | ||
|
||
public class GlobalResult { | ||
private String csvJmeterReport; | ||
private String kpiFile; | ||
private int numberOfKpis; | ||
private int numberFailed; | ||
List checkKpiResults; | ||
|
||
public String getCsvJmeterReport() { | ||
return csvJmeterReport; | ||
} | ||
|
||
public void setCsvJmeterReport(String csvJmeterReport) { | ||
this.csvJmeterReport = csvJmeterReport; | ||
} | ||
|
||
public String getKpiFile() { | ||
return kpiFile; | ||
} | ||
|
||
public void setKpiFile(String kpiFile) { | ||
this.kpiFile = kpiFile; | ||
} | ||
|
||
public int getNumberOfKpis() { | ||
return numberOfKpis; | ||
} | ||
|
||
public void setNumberOfKpis(int numberOfKpis) { | ||
this.numberOfKpis = numberOfKpis; | ||
} | ||
|
||
public int getNumberFailed() { | ||
return numberFailed; | ||
} | ||
|
||
public void setNumberFailed(int numberFailed) { | ||
this.numberFailed = numberFailed; | ||
} | ||
|
||
public List getCheckKpiResults() { | ||
return checkKpiResults; | ||
} | ||
|
||
public void setCheckKpiResults(List checkKpiResults) { | ||
this.checkKpiResults = checkKpiResults; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
final StringBuilder sb = new StringBuilder("GlobalResult{"); | ||
sb.append("csvJmeterReport='").append(csvJmeterReport).append('\''); | ||
sb.append(", kpiFile='").append(kpiFile).append('\''); | ||
sb.append(", numberOfKpis=").append(numberOfKpis); | ||
sb.append(", numberFailed=").append(numberFailed); | ||
sb.append(", checkKpiResults=").append(checkKpiResults); | ||
sb.append('}'); | ||
return sb.toString(); | ||
} | ||
} |
Oops, something went wrong.