We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
7.10.2
The correct number of ignored tests should be displayed in the XML results
Ignored statistic shows count of retried tests: testng-core/src/main/java/org/testng/reporters/AbstractXmlReporter.java
public void add(Count count) { this.passed += count.passed; this.failed += count.failed; this.skipped += count.skipped; this.retried += count.retried; this.ignored += count.retried; }
@Test @Ignore public void testIgnored() { System.out.println("Ignored testcase"); }
Incase you plan to raise a pull request to fix this issue, please make sure you refer our Contributing section for detailed set of steps.
The text was updated successfully, but these errors were encountered:
Fix for testng-team#3189 - fixed ignored testcases count
36c0ebd
fb83289
Fix is prepared in PR: #3190
Sorry, something went wrong.
Fix for #3189 - fixed ignored testcases count (#3190)
3b79840
* Fix for #3189 - fixed ignored testcases count --------- Co-authored-by: Kanaduchi <[email protected]>
Successfully merging a pull request may close this issue.
TestNG Version
Expected behavior
The correct number of ignored tests should be displayed in the XML results
Actual behavior
Ignored statistic shows count of retried tests:
testng-core/src/main/java/org/testng/reporters/AbstractXmlReporter.java
Is the issue reproducible on runner?
Test case sample
Contribution guidelines
Incase you plan to raise a pull request to fix this issue, please make sure you refer our Contributing section for detailed set of steps.
The text was updated successfully, but these errors were encountered: