Package org.assertj.core.error
Class ShouldNotHaveDuplicates
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldNotHaveDuplicates
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies a group of elements is does not have duplicates failed. A
group of elements can be a collection, an array or a
String.- Author:
- Alex Ruiz, Joel Costigliola
-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryshouldNotHaveDuplicates(Object actual, Object duplicates) Creates a new.ShouldNotHaveDuplicatesstatic ErrorMessageFactoryshouldNotHaveDuplicates(Object actual, Object duplicates, ComparisonStrategy comparisonStrategy) Creates a new.ShouldNotHaveDuplicatesMethods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Method Details
-
shouldNotHaveDuplicates
public static ErrorMessageFactory shouldNotHaveDuplicates(Object actual, Object duplicates, ComparisonStrategy comparisonStrategy) Creates a new.ShouldNotHaveDuplicates- Parameters:
actual- the actual value in the failed assertion.duplicates- the duplicate values found inactual.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- an instance of
ErrorMessageFactory.
-
shouldNotHaveDuplicates
Creates a new.ShouldNotHaveDuplicates- Parameters:
actual- the actual value in the failed assertion.duplicates- the duplicate values found inactual.- Returns:
- an instance of
ErrorMessageFactory.
-