doesNotMeetGuideline function

AsyncMatcher doesNotMeetGuideline(
  1. AccessibilityGuideline guideline
)

The inverse matcher of meetsGuideline.

This is needed because the isNot matcher does not compose with an AsyncMatcher.

Implementation

AsyncMatcher doesNotMeetGuideline(AccessibilityGuideline guideline) {
  return _DoesNotMatchAccessibilityGuideline(guideline);
}