Package org.fest.assertions.error
Class ShouldContainOnly
- java.lang.Object
-
- org.fest.assertions.error.BasicErrorMessageFactory
-
- org.fest.assertions.error.ShouldContainOnly
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldContainOnly extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies a group of elements contains only a given set of values and nothing else failed. A group of elements can be a collection, an array or aString
.- Author:
- Alex Ruiz, Yvonne Wang, 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
shouldContainOnly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected)
Creates a newShouldContainOnly
.static ErrorMessageFactory
shouldContainOnly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected, ComparisonStrategy comparisonStrategy)
Creates a newShouldContainOnly
.-
Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
-
-
-
Method Detail
-
shouldContainOnly
public static ErrorMessageFactory shouldContainOnly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected, ComparisonStrategy comparisonStrategy)
Creates a newShouldContainOnly
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldContainOnly
public static ErrorMessageFactory shouldContainOnly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected)
Creates a newShouldContainOnly
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
-