org.assertj.core.error
Class ShouldContainOnlyKeys

java.lang.Object
  extended by org.assertj.core.error.BasicErrorMessageFactory
      extended by org.assertj.core.error.ShouldContainOnlyKeys
All Implemented Interfaces:
ErrorMessageFactory

public class ShouldContainOnlyKeys
extends BasicErrorMessageFactory

Creates an error message indicating that an assertion that verifies map contains only a given set of keys and nothing else failed.

Author:
Joel Costigliola

Field Summary
 
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format
 
Method Summary
static ErrorMessageFactory shouldContainOnlyKeys(Object actual, Object expected, Object notFound, Object notExpected)
          Creates a new ShouldContainOnlyKeys.
 
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

shouldContainOnlyKeys

public static ErrorMessageFactory shouldContainOnlyKeys(Object actual,
                                                        Object expected,
                                                        Object notFound,
                                                        Object notExpected)
Creates a new ShouldContainOnlyKeys.

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.