org.fest.assertions.error
Class ShouldNotHaveDuplicates
java.lang.Object
org.fest.assertions.error.BasicErrorMessageFactory
org.fest.assertions.error.ShouldNotHaveDuplicates
- All Implemented Interfaces:
- ErrorMessageFactory
public class ShouldNotHaveDuplicates
- extends BasicErrorMessageFactory
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
shouldNotHaveDuplicates
public static ErrorMessageFactory shouldNotHaveDuplicates(Object actual,
Object duplicates,
org.fest.util.ComparisonStrategy comparisonStrategy)
- Creates a new
ShouldNotHaveDuplicates
.
- Parameters:
actual
- the actual value in the failed assertion.duplicates
- the duplicate values found in actual
.comparisonStrategy
- the ComparisonStrategy
used to evaluate assertion.
- Returns:
- an instance of
ErrorMessageFactory
.
shouldNotHaveDuplicates
public static ErrorMessageFactory shouldNotHaveDuplicates(Object actual,
Object duplicates)
- Creates a new
ShouldNotHaveDuplicates
.
- Parameters:
actual
- the actual value in the failed assertion.duplicates
- the duplicate values found in actual
.
- Returns:
- an instance of
ErrorMessageFactory
.
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.