Package org.assertj.core.error
Class ShouldNotBeEqualIgnoringCase
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldNotBeEqualIgnoringCase
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that two
CharSequence
s are not equal,
ignoring case
considerations, failed.-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ShouldNotBeEqualIgnoringCase
(CharSequence actual, CharSequence expected) -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactory
shouldNotBeEqualIgnoringCase
(CharSequence actual, CharSequence expected) Creates a new
.ShouldNotBeEqualIgnoringCase
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldNotBeEqualIgnoringCase
-
-
Method Details
-
shouldNotBeEqualIgnoringCase
public static ErrorMessageFactory shouldNotBeEqualIgnoringCase(CharSequence actual, CharSequence expected) Creates a new
.ShouldNotBeEqualIgnoringCase
- Parameters:
actual
- the actual value in the failed assertion.expected
- the expected value in the failed assertion.- Returns:
- the created
ErrorMessageFactory
.
-