StringContainMatcher matcher = new StringContainMatcher(expecteds, modes);
return (IStringAssert) this.assertThat(matcher);
}
public IStringAssert end(String expected, StringMode... modes) {
StringEndWithMatcher matcher = new StringEndWithMatcher(expected);
matcher.setStringModes(modes);
return (IStringAssert) this.assertThat(matcher);
}