hasNoFindingsFor function

Matcher hasNoFindingsFor(
  1. String ruleId
)

Matches a CoverageReport with no Findings for the given ruleId.

expect(report, hasNoFindingsFor('wcag_1_1_1_non_text_content'));

Implementation

Matcher hasNoFindingsFor(String ruleId) => _HasNoFindingsFor(ruleId);