Closed aik099 closed 7 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 82.58%. Comparing base (
fe5911c
) to head (1c7a6e2
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
The
BrowserTestCase::onTestSuiteEnded
event was also invoked for excluded tests. This happened because tests for iteration were retrieved from theTestSuite::tests
method (which returns all tests and even those, that won't be executed).Instead, interaction should be made through the
TestSuite
class object itself (as PHPUnit does). This has been fixed by this PR.