Package org.assertj.core.error
Class ShouldContainsOnlyOnce
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldContainsOnlyOnce
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldContainsOnlyOnce 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:
- William Delanoue
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldContainsOnlyOnce(Object actual, Object expected, Set<?> notFound, Set<?> notOnlyOnce)
Creates a newShouldContainsOnlyOnce
.static ErrorMessageFactory
shouldContainsOnlyOnce(Object actual, Object expected, Set<?> notFound, Set<?> notOnlyOnce, ComparisonStrategy comparisonStrategy)
Creates a newShouldContainsOnlyOnce
.-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldContainsOnlyOnce
public static ErrorMessageFactory shouldContainsOnlyOnce(Object actual, Object expected, Set<?> notFound, Set<?> notOnlyOnce, ComparisonStrategy comparisonStrategy)
Creates a newShouldContainsOnlyOnce
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notOnlyOnce
- values inactual
that were not only once inexpected
.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldContainsOnlyOnce
public static ErrorMessageFactory shouldContainsOnlyOnce(Object actual, Object expected, Set<?> notFound, Set<?> notOnlyOnce)
Creates a newShouldContainsOnlyOnce
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notOnlyOnce
- values inactual
that were found not only once inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
-