-
-
Notifications
You must be signed in to change notification settings - Fork 749
Closed
Milestone
Description
Feature summary
AbstractCharSequenceAssert#matches(CharSequence)
and
AbstractAssert#matches(Predicate)
exists but its counterpart doesNotMatch
only has
AbstractCharSequenceAssert#doesNotMatch(CharSequence)
and doesn't have
AbstractAssert#doesNotMatch(Predicate)
Example
assertThat(actualString)
.matches(it -> it.startsWith("foo"))
.doesNotMatch(it -> it.endsWith("bar")); // nope, not available
May I add it?
Metadata
Metadata
Assignees
Labels
No labels