Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Execution summary report enhancements #1363

Merged
merged 5 commits into from
Nov 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Execution Summary Report enhancements junit comment
  • Loading branch information
MahmoudElSharkawy committed Nov 12, 2023
commit e3a79239b44f1098951e46ed7ae3ae072e70a1ee
4 changes: 2 additions & 2 deletions src/main/java/com/shaft/listeners/JunitListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ private void appendToExecutionSummaryReport(TestIdentifier testIdentifier, Strin
String caseName = testIdentifier.getDisplayName();
String caseDescription = testIdentifier.getLegacyReportingName();
String statusMessage = statusIcon.getValue() + status.name();
Boolean hasIssue = false;
ExecutionSummaryReport.casesDetailsIncrement(caseSuite, caseName, caseDescription, errorMessage, statusMessage, hasIssue);
// Will add empty strings o the tmsLink and issue params until we figure out how to get the values of the annotations using JUnit
ExecutionSummaryReport.casesDetailsIncrement("", caseSuite, caseName, caseDescription, errorMessage, statusMessage, "");
}

}
Expand Down