Package org.fest.assertions.error
Class ShouldContainSequence
- java.lang.Object
-
- org.fest.assertions.error.BasicErrorMessageFactory
-
- org.fest.assertions.error.ShouldContainSequence
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldContainSequence extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a group of elements contains a sequence of values failed. A group of elements can be a collection, an array or aString
.- 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 ErrorMessageFactory
shouldContainSequence(java.lang.Object actual, java.lang.Object sequence)
Creates a new
.ShouldContainSequence
static ErrorMessageFactory
shouldContainSequence(java.lang.Object actual, java.lang.Object sequence, ComparisonStrategy comparisonStrategy)
Creates a new
.ShouldContainSequence
-
Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
-
-
-
Method Detail
-
shouldContainSequence
public static ErrorMessageFactory shouldContainSequence(java.lang.Object actual, java.lang.Object sequence, ComparisonStrategy comparisonStrategy)
Creates a new
.ShouldContainSequence
- Parameters:
actual
- the actual value in the failed assertion.sequence
- the sequence of values expected to be inactual
.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldContainSequence
public static ErrorMessageFactory shouldContainSequence(java.lang.Object actual, java.lang.Object sequence)
Creates a new
.ShouldContainSequence
- Parameters:
actual
- the actual value in the failed assertion.sequence
- the sequence of values expected to be inactual
.- Returns:
- the created
ErrorMessageFactory
.
-
-