Package org.assertj.core.error
Class ShouldNotEndWithIgnoringCase
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldNotEndWithIgnoringCase
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldNotEndWithIgnoringCase extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies thatCharSequence
does not end with a given value (ignoring case considerations) failed.
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ShouldNotEndWithIgnoringCase(java.lang.Object actual, java.lang.Object expected, ComparisonStrategy comparisonStrategy)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldNotEndWithIgnoringCase(java.lang.CharSequence actual, java.lang.CharSequence expected, ComparisonStrategy comparisonStrategy)
Creates a new
.ShouldNotEndWithIgnoringCase
-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Constructor Detail
-
ShouldNotEndWithIgnoringCase
private ShouldNotEndWithIgnoringCase(java.lang.Object actual, java.lang.Object expected, ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
shouldNotEndWithIgnoringCase
public static ErrorMessageFactory shouldNotEndWithIgnoringCase(java.lang.CharSequence actual, java.lang.CharSequence expected, ComparisonStrategy comparisonStrategy)
Creates a new
.ShouldNotEndWithIgnoringCase
- Parameters:
actual
- the actual value in the failed assertion.expected
- the value or sequence of values thatactual
is expected to not end with, ignoring case.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
-