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?
Feature summary
AbstractCharSequenceAssert#matches(CharSequence)and
AbstractAssert#matches(Predicate)exists but its counterpart
doesNotMatchonly hasAbstractCharSequenceAssert#doesNotMatch(CharSequence)and doesn't have
AbstractAssert#doesNotMatch(Predicate)Example
May I add it?