org.assertj.core.error
Class ShouldContainOnly

java.lang.Object
  extended by org.assertj.core.error.BasicErrorMessageFactory
      extended by org.assertj.core.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 a String.

Author:
Alex Ruiz, Yvonne Wang, Joel Costigliola

Field Summary
 
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format
 
Method Summary
static ErrorMessageFactory shouldContainOnly(Object actual, Object expected, Object notFound, Object notExpected)
          Creates a new ShouldContainOnly.
static ErrorMessageFactory shouldContainOnly(Object actual, Object expected, Object notFound, Object notExpected, ComparisonStrategy comparisonStrategy)
          Creates a new ShouldContainOnly.
 
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, equals, hashCode, toString, unquotedString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Method Detail

shouldContainOnly

public static ErrorMessageFactory shouldContainOnly(Object actual,
                                                    Object expected,
                                                    Object notFound,
                                                    Object notExpected,
                                                    ComparisonStrategy comparisonStrategy)
Creates a new ShouldContainOnly.

Parameters:
actual - the actual value in the failed assertion.
expected - values expected to be contained in actual.
notFound - values in expected not found in actual.
notExpected - values in actual that were not in expected.
comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
Returns:
the created ErrorMessageFactory.

shouldContainOnly

public static ErrorMessageFactory shouldContainOnly(Object actual,
                                                    Object expected,
                                                    Object notFound,
                                                    Object notExpected)
Creates a new ShouldContainOnly.

Parameters:
actual - the actual value in the failed assertion.
expected - values expected to be contained in actual.
notFound - values in expected not found in actual.
notExpected - values in actual that were not in expected.
Returns:
the created ErrorMessageFactory.


Copyright © 2013–2015 AssertJ. All rights reserved.