Package org.fest.assertions.error
Class ShouldContain
java.lang.Object
org.fest.assertions.error.BasicErrorMessageFactory
org.fest.assertions.error.ShouldContain
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies a group of elements contains a given set of values failed.
A group of elements can be a collection, an array or a
It also mention the
String.It also mention the
ComparisonStrategy used.- Author:
- Alex Ruiz, Joel Costigliola
-
Field Summary
Fields inherited from class org.fest.assertions.error.BasicErrorMessageFactory
arguments, format -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryshouldContain(Object actual, Object expected, Object notFound) Creates a newShouldContain.static ErrorMessageFactoryshouldContain(Object actual, Object expected, Object notFound, ComparisonStrategy comparisonStrategy) Creates a newShouldContain.Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
Method Details
-
shouldContain
public static ErrorMessageFactory shouldContain(Object actual, Object expected, Object notFound, ComparisonStrategy comparisonStrategy) Creates a newShouldContain.- Parameters:
actual- the actual value in the failed assertion.expected- values expected to be inactual.notFound- the values inexpectednot found inactual.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- the created
ErrorMessageFactory.
-
shouldContain
Creates a newShouldContain.- Parameters:
actual- the actual value in the failed assertion.expected- values expected to be inactual.notFound- the values inexpectednot found inactual.- Returns:
- the created
ErrorMessageFactory.
-