You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the plugin is doing different calculation based on the test framework used. All of them produce results that are hard to understand (as they don't match the result report ones).
The idea of this ticket is to make sure to use the same standard for all frameworks (and also to report in the same way as for other plugins).
MSTest/VSTest
Unit Tests: executed
Errors: error
Failures: timeout + failed + aborted
Skipped: total - executed
NUnit
Unit Tests: total - skipped - inconclusive - ignored (test-results) or total - skipped - inconclusive (test-run)
Errors: errors (test-results) or sum all nested test-case Error
Failures: failures (test-results) or failed (test-run)
Currently the plugin is doing different calculation based on the test framework used. All of them produce results that are hard to understand (as they don't match the result report ones).
The idea of this ticket is to make sure to use the same standard for all frameworks (and also to report in the same way as for other plugins).
MSTest/VSTest
executed
error
timeout + failed + aborted
total - executed
NUnit
total - skipped - inconclusive - ignored
(test-results) ortotal - skipped - inconclusive
(test-run)errors
(test-results) or sum all nested test-caseError
failures
(test-results) orfailed
(test-run)skipped + inconclusive + ignored
(test-results) orskipped + inconclusive
(test-run)XUnit
total - skipped
errors
failed
skipped
The text was updated successfully, but these errors were encountered: