Package org.fest.assertions.error
Class ShouldContain
- java.lang.Object
 - 
- org.fest.assertions.error.BasicErrorMessageFactory
 - 
- org.fest.assertions.error.ShouldContain
 
 
 
- 
- All Implemented Interfaces:
 ErrorMessageFactory
public class ShouldContain extends BasicErrorMessageFactory
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 aString.
It also mention theComparisonStrategyused.- Author:
 - Alex Ruiz, Joel Costigliola
 
 
- 
- 
Field Summary
- 
Fields inherited from class org.fest.assertions.error.BasicErrorMessageFactory
arguments, format 
 - 
 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactoryshouldContain(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound)Creates a newShouldContain.static ErrorMessageFactoryshouldContain(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, ComparisonStrategy comparisonStrategy)Creates a newShouldContain.- 
Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
shouldContain
public static ErrorMessageFactory shouldContain(java.lang.Object actual, java.lang.Object expected, java.lang.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
public static ErrorMessageFactory shouldContain(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound)
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. 
 
 - 
 
 -