Package org.assertj.core.error
Class ShouldContainOnlyKeys
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- 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.
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ShouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected, ComparisonStrategy comparisonStrategy)
private
ShouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, ComparisonStrategy comparisonStrategy)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Iterable<?> notExpected)
Creates a newShouldContainOnlyKeys
.static ErrorMessageFactory
shouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected)
Creates a newShouldContainOnlyKeys
.-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Constructor Detail
-
ShouldContainOnlyKeys
private ShouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected, ComparisonStrategy comparisonStrategy)
-
ShouldContainOnlyKeys
private ShouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
shouldContainOnlyKeys
public static ErrorMessageFactory shouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected)
Creates a newShouldContainOnlyKeys
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
shouldContainOnlyKeys
public static ErrorMessageFactory shouldContainOnlyKeys(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Iterable<?> notExpected)
Creates a newShouldContainOnlyKeys
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
-