Assert that the specified object is null. @param object the object to check
(final Object object)
| 183 | * @param object the object to check |
| 184 | */ |
| 185 | public static void assertNull(final Object object) { |
| 186 | Assertions.assertNull(object, "Expected null but found [" + object + "]"); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Assert that the specified object is null. |
no outgoing calls
no test coverage detected