Package org.springframework.test.util
Class AssertionErrors
java.lang.Object
org.springframework.test.util.AssertionErrors
Test assertions that are independent of any third-party assertion library.
- Since:
- 3.2
- Author:
- Lukas Krecan, Arjen Poutsma, Sam Brannen
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
assertEquals
(String message, Object expected, Object actual) Assert two objects are equal and raise anAssertionError
otherwise.static void
assertFalse
(String message, boolean condition) Assert the given condition isfalse
and raise anAssertionError
otherwise.static void
assertNotEquals
(String message, Object expected, Object actual) Assert two objects are not equal and raise anAssertionError
otherwise.static void
assertNotNull
(String message, Object object) Assert that the given object is notnull
and raise anAssertionError
otherwise.static void
assertNull
(String message, Object object) Assert that the given object isnull
and raise anAssertionError
otherwise.static void
assertTrue
(String message, boolean condition) Assert the given condition istrue
and raise anAssertionError
otherwise.static void
Fail a test with the given message.static void
Fail a test with the given message passing along expected and actual values to be appended to the message.
-
Constructor Details
-
AssertionErrors
public AssertionErrors()
-
-
Method Details
-
fail
Fail a test with the given message.- Parameters:
message
- a message that describes the reason for the failure
-
fail
Fail a test with the given message passing along expected and actual values to be appended to the message.For example given:
String name = "Accept"; String expected = "application/json"; String actual = "text/plain"; fail("Response header [" + name + "]", expected, actual);
The resulting message is:
Response header [Accept] expected:<application/json> but was:<text/plain>
- Parameters:
message
- a message that describes the use case that failedexpected
- the expected valueactual
- the actual value
-
assertTrue
Assert the given condition istrue
and raise anAssertionError
otherwise.- Parameters:
message
- a message that describes the reason for the failurecondition
- the condition to test for
-
assertFalse
Assert the given condition isfalse
and raise anAssertionError
otherwise.- Parameters:
message
- a message that describes the reason for the failurecondition
- the condition to test for- Since:
- 5.2.1
-
assertNull
Assert that the given object isnull
and raise anAssertionError
otherwise.- Parameters:
message
- a message that describes the reason for the failureobject
- the object to check- Since:
- 5.2.1
-
assertNotNull
Assert that the given object is notnull
and raise anAssertionError
otherwise.- Parameters:
message
- a message that describes the reason for the failureobject
- the object to check- Since:
- 5.1.8
-
assertEquals
Assert two objects are equal and raise anAssertionError
otherwise.For example:
assertEquals("Response header [" + name + "]", expected, actual);
- Parameters:
message
- a message that describes the value being checkedexpected
- the expected valueactual
- the actual value- See Also:
-
assertNotEquals
public static void assertNotEquals(String message, @Nullable Object expected, @Nullable Object actual) Assert two objects are not equal and raise anAssertionError
otherwise.For example:
assertNotEquals("Response header [" + name + "]", expected, actual);
- Parameters:
message
- a message that describes the value being checkedexpected
- the expected valueactual
- the actual value
-