We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#NonNullMatcher
Similar to the Matcher<T> base class, NonNullMatcher<T> provides a null check:
public class SafeMatcher : NonNullMatcher<Biscuit> { // item is guaranteed not to be null protected override bool MatchesSafely(Biscuit item) { // test biscuit! } }