Package org.assertj.core.error
Class ShouldNotEndWithIgnoringCase
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldNotEndWithIgnoringCase
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that
CharSequence does not end with a
given value (ignoring case considerations) failed.-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryshouldNotEndWithIgnoringCase(CharSequence actual, CharSequence expected, ComparisonStrategy comparisonStrategy) Creates a new.ShouldNotEndWithIgnoringCaseMethods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Method Details
-
shouldNotEndWithIgnoringCase
public static ErrorMessageFactory shouldNotEndWithIgnoringCase(CharSequence actual, CharSequence expected, ComparisonStrategy comparisonStrategy) Creates a new.ShouldNotEndWithIgnoringCase- Parameters:
actual- the actual value in the failed assertion.expected- the value or sequence of values thatactualis expected to not end with, ignoring case.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- the created
ErrorMessageFactory.
-