Jacobvu84 / Automated-Software-Testing

Nơi lữu trữ các vấn đề được trao đổi bởi cộng đồng Automated Software Testing
2 stars 4 forks source link

Lấy TestOutcomes #43

Open Jacobvu84 opened 4 years ago

Jacobvu84 commented 4 years ago
private static final String REPORT_OUTPUT = "/target/site/serenity";
File serenityReportFolder = new File(System.getProperty("user.dir") + REPORT_OUTPUT);

TestOutcomes outcomes = null;

try {
       outcomes = TestOutcomeLoader.loadTestOutcomes().inFormat(OutcomeFormat.JSON).from(serenityReportFolder);
} catch (IOException e) {
       e.printStackTrace();
}